Programming/Git

[Git] CRLF, .gitattributes, 새로운 branch 가져오기, 원격 branch 삭제

Sujin Lee (Daisy) 2020. 6. 5. 14:54

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

 

 

 

 

 

 

반응형