Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
0answers
100 views

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

Possible Duplicate: How do I interactively unstage a particular hunk in git? When I want to split up a new file into several commits I can git add -N <file> and then interactively ...
1
vote
2answers
154 views

Why are there 2 ways to unstage a file in git?

Sometimes git suggests git rm --cached to unstage a file, sometimes git reset HEAD file. When should I use which? EDIT: D:\code\gt2>git init Initialized empty Git repository in D:/code/gt2/.git/ ...