What is the fastest way to unstage parts of a new file in git?

跟風遠走 提交于 2019-12-04 16:39:45

问题


When I want to split up a new file into several commits I can git add -N <file> and then interactively stage lines using git gui. When I make a mistake while staging, however, git gui won't let me unstage individual lines because it is a new file (which seems like a bug to me). Of course I can always unstage the whole file and start over again, but I am wondering whether there is a more efficient way to do so.

I am using git 1.7.5.


To clarify, this question is specific to new aka untracked files!


回答1:


From the command line type:

git reset -p

This will let you selectivelty unstage hunks from the index using the standard command-line interface for managing hunks.. This is the opposite of git add -p.

UPDATE

OK, it would appear that you cannot selectively stage different hunks when the file is new. Given that git-gui and the standard git hunk editor both do not allow this, it probably isn't possible.




回答2:


Using fugitive you can easily do so. Just invoke the :Gdiff command and then stage and unstage whatever you want. You can even edit the index file directly. Of course, this solution requires you to be fairly comfortable with vim and vimdiff...




回答3:


I just ran into the same issue: I had just committed a new file, and I wanted to unstage some of the lines in that file and have those as a separate commit. The solution I worked out was:

  • Start on the commit that adds the new file
  • Remove the lines you wanted to unstage in the source file, stage those changes and git commit -m 'REVERTME'
  • Create a new commit that reverts that latest commit: git revert HEAD
  • Use git rebase -i to fixup the first new commit, and optionally reword the revert commit.



回答4:


Another easy way to sort this is to cut everything out of the file except for one line that you want in the first commit. Stage it and then add back the rest of the file. From then on you can stage hunks/lines as usual



来源:https://stackoverflow.com/questions/6827815/what-is-the-fastest-way-to-unstage-parts-of-a-new-file-in-git

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!