github
-
Github에 내 코드 반영하기 (clone, add, commit, push)개발 환경/Github 2020. 5. 30. 21:45
Github를 사용하고자 마음을 먹었다면 github에 내 코드를 올리든가 이미 존재하는 코드를 수정해서 반영해야한다. 한번 방법을 알아보자. 0. git 다운로드 windows git-scm.com/download/win Git - Downloading Package Downloading Git Now What? Now that you have downloaded Git, it's time to start using it. git-scm.com Linux sudo apt-get install git macOS brew install git 1. git clone 레포지토리(저장소)를 내 로컬에 다운 받아보자. 다운 받고자하는 폴더에서 윈도우는 git bash를 키고(파일탐색기에서 우클릭하면 Git ba..
-
git 사용시 자동으로 로그인 하는 방법개발 환경/Ubuntu 2020. 1. 12. 00:47
코드를 수정후 github에 push할 때마다 로그인하는 것은 매우 귀찮아서 찾아보았다. $ git config credential.helper store $ git push https://github.com/HanSeokhyeon/hanseokhyeon.github.io.git Username for 'https://github.com': HanSeokhyeon Password for 'https://HanSeokhyeon@github.com': Everything up-to-date출처 : https://franzpark.github.io/git-permanent-authentication/