[GIT] GitHub 명령어 정리

Git Commands

  1. git pull

  2. git add .

  3. git commit -m "message"

  4. git push

  5. git commit --amend -m "변경할 message"

  6. git reset --hard "commit code"

  7. git push --force "branch"

  8. git branch -r

  9. git branch -a

  10. git checkout "branch"

참고

  1. https://jw910911.tistory.com/77

Comments