Git
From Chaehyun
(Difference between revisions)
Line 10: | Line 10: | ||
** git rm --cached directory -r | ** git rm --cached directory -r | ||
** git ls-files | xargs git rm --cached | ** git ls-files | xargs git rm --cached | ||
+ | |||
+ | == 불필요한 git 파일 삭제 == | ||
+ | * find . -name .git | xargs rm -rf |
Revision as of 11:56, 19 October 2012
- vi ~/.gitignore
.svn bin dist
- git config --global core.excludesfile ~/.gitignore
- 파일은 그대로 남겨두고, version control에서만 제외하기
- git rm --cached filename
- git rm --cached directory -r
- git ls-files | xargs git rm --cached
불필요한 git 파일 삭제
- find . -name .git | xargs rm -rf