파일의 일부만 commit 하고 싶을 때, git add -p 를 사용하면 파일의 변경점을 hunk 단위로 작업할 수 있다. # git add -p y - stage this hunk n - do not stage this hunk q - quit; do not stage this hunk or any of the remaining ones a - stage this hunk and all later hunks in the file d - do not stage this hunk or any of the later hunks in the file g - select a hunk to go to / - search for a hunk matching the given regex j - leave this ..