PROGRAMMING/Git
-
유용한 git command 모음PROGRAMMING/Git 2021. 3. 25. 08:33
Basic // initialize project $ git init // download project $ git clone GIT_ADDRESS.git // stage a file $ git add FILE_NAME // stage all files from current folder $ git add . // commit to local storage $ git commit // commit to local storage by one line $ git commit -m "COMMIT MESSAGE" // push commits to remote storage $ git push origin master // save the current changes temporarily $ git stash A..
-
git을 이용한 깃허브(github) 연동하기PROGRAMMING/Git 2017. 8. 3. 23:39
깃허브! 정말 좋은 소스 공유 사이트인데 사용법이 헷갈려서 정리 겸 포스팅하려고 한다. * git 다운로드https://rogerdudler.github.io/git-guide/index.ko.html정말 애용하는 사이트. 설치부터 사용법까지 알아보기 쉽게 나와있다. * git bash 사용법깃허브 로컬 저장소로 사용하고 싶은 폴더에서 shift를 누른 채로 오른쪽 버튼을 클릭하고git bash here 을 선택하면 명령창이 나온다. * 자주 사용하는 명령어들로컬 저장소를 init해주기 - 처음에 꼭 필요!!git init 기존의 프로젝트 다운받기git clone https://깃허브주소.git 파일 추가하기git add 파일이름여러개의 파일 -> git add -f * 로컬 저장소에 commit (HE..