Git 관련해서, 은근히 자주 쓰는데 잘 까먹는 것들.
#1. github에 새로 만든 branch 가져오기
git remote update
#2. github 원격브랜치 삭제
git checkout dev // 삭제하려는 브랜치가 아닌 다른 브랜치에 checkout
git branch --delete branchname // 삭제 원하는 브랜치를 로컬에서 삭제
git push origin :branchname // 원격에서도 삭제
#3. CR/LF
https://www.lesstif.com/gitbook/git-crlf-20776404.html
#4. .gitattribute 이용 - Github에서 주 언어로 표시된 것을 변경하고 싶을 때
https://musma.github.io/2019/08/26/github-linguist-overrides.html
https://kr-zephyr.github.io/github/2017/06/07/github-change-repo-language.html
#5. .gitattributes 적용 안될 때
- ??? 이대로 했는데 안 됨 ㅠㅠㅠ
https://stackoverflow.com/questions/39995131/gitattributes-dont-work-properly-on-mac-and-windows
반응형
'Programming > Git' 카테고리의 다른 글
[Git] Please commit your changes or stash them before you merge. 해결방법 (0) | 2020.04.18 |
---|---|
[Git] gitignore가 제대로 적용되지 않을 때 + rm 옵션 (0) | 2020.04.18 |
[Git] 로컬 폴더를 원격 저장소와 연결하기 (0) | 2020.03.04 |
[Git] 깃허브 마크다운 문법 (0) | 2020.01.24 |
[Github] 1. Git 기초개념 (0) | 2020.01.05 |
[Github] 소스트리(SourceTree)로 깃허브 사용하기 (2) | 2020.01.04 |