자주 쓰이는 git 명령어들
Pull Request를 Local로 가져오기
git pull upstream pull/110/head:pr-110
Password 캐시 저장
git config --global credential.helper 'cache --timeout=3600'
Git Patch 파일 적용
git apply filename.patch
.gitignore에 신규 파일 추가
git rm --cached 파일명
git add .
git commit -m "Update the .gitignore File"
git push
Git Tag 추가
git tag 태그명
Git Tag 를 원격에 Push
git push --tags
Git Tag 삭제
git tag -d 태명그
원격에 있는 태그 삭제
git push origin :태그명