GIT 后悔药:取消已commit的文件(unstage)

假设-a误将 file1 file2 加入了commit,并且成功commit。

//将文件还原到上一个commit,也就是未修改的状态

git reset HEAD^1 path/to/file1
git reset HEAD^1 path/to/file2

//以amend方式对最新的commit进行修改,这个动作会将file1 file2从commit里“踢”出去

//但是file1 file2已经有的修改,会留在cached里。
git commit --amend

你可能感兴趣的:(git)