목록Study/etc (1)
이상한 코딩 나라의 혜돌이
[Git] 자주 쓰는 git command 정리
git branch : 내 로컬 저장소 branch들 확인하기 git status : 현재 git 상태 확인하기 (뭐가 tracking 되고 있는지 그런거) git log : commit log 확인하기 (commit hashcode(?)랑 메시지 등등 다 확인 가능) git shortlog : commit log 확인하는데 짧게 한눈에 확인하기! git checkout [branch_name] : branch 바꾸기! git add [file_name] : commit 할 파일 추가하기 git commit -m "[commit_message]" : 메시지와 함께 commit 하기 git push [remote_repo] [local repo] : 원격 저장소에 내 로컬 저장소 push 하기 (강제로 하..
Study/etc
2020. 4. 6. 18:21