text 从上次提交中删除文件更改

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了text 从上次提交中删除文件更改相关的知识,希望对你有一定的参考价值。


# Method #1 - revert the file and create a new commit (safe method)

$ git checkout HEAD^ -- /path/to/file
$ git add /path/to/file
$ git commit -m "revert changes on this file, not finished with it yet"
$ git push origin HEAD

# Method #2 - revert the file and update the last commit ('uncommitting' method)
# use this method only if you know what you're doing

$ git checkout HEAD^ -- /path/to/file
$ git commit --amend
$ git push -f origin HEAD

以上是关于text 从上次提交中删除文件更改的主要内容,如果未能解决你的问题,请参考以下文章

text 添加更改到上次提交(推送前)

如何查看上次提交中更改了哪些文件

text 从无法访问的提交中恢复已删除的文件

text 从无法访问的提交中恢复已删除的文件

git:撤消所有工作目录更改,包括新文件

sh 自上次更改某个文件以来获取所有提交