우도비

gitignore 본문

카테고리 없음

gitignore

오성민 2017. 12. 26. 16:56

$ vi ~/.gitignore



이렇게 추가해 줍니다.

 

.svn

.DS_Store

build

xcuserdata


그리고, 


$ git config --global core.excludesfile ~/.gitignore



이렇게 실행해 줍니다.

확인해 보시면, 


$ cat .gitconfig 

[core]

    quotepath = false

    excludesfile = /Users/userid/.gitignore

[user]

    name = Gyuha Shin

    email = userid@mail.com

Comments