Git
From Chaehyun
- 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
다른 repository로 바꾸기
- git push -u bitbucket master
- 다음 부터는 그냥 git push
- git remote rm origin
- git remote mv ~~