[git] git status 의 Untracked files 지우기 2013년 5월 27일2013년 5월 27일 다솜돌이 Leave a comment 이거도 가끔 하는데 할 때 마다 긁자! rm -rf `git status | grep -P “^#\t” | awk ‘{ print $2 }’` 이 글 공유하기:트위터FacebookLinkedIn전자우편인쇄더레딧TumblrTelegramPinterest포켓WhatsApp이것이 좋아요:좋아하기 가져오는 중...
[git] Untracked files 및 Deleted files 까지 함께 자동으로 commit 하는 방법 2011년 2월 25일2011년 2월 25일 다솜돌이 Leave a comment 다음과 같이 해도 되지만, 시스템 부하가 많이 간다. git add . git commit -a 그래서 다음과 같이 하면 더 빠르게 된다. git ls-files -o | git update-index –add –stdin git commit -a 참고 : http://kerneltrap.org/mailarchive/git/2007/8/5/254068 이 글 공유하기:트위터FacebookLinkedIn전자우편인쇄더레딧TumblrTelegramPinterest포켓WhatsApp이것이 좋아요:좋아하기 가져오는 중...