EKsumic's Blog

let today = new Beginning();

Click the left button to use the catalog.

QA

Github如何回退版本?

切换到工作目录,然后输入:

git log --pretty=oneline

你会看到多条记录,它们分别是由 Commit id+空格+名称 构成的。


选择一条你想回退的Commit id,然后输入:

git reset --hard [你的commit id]

然后,将修改推送到远程服务器:

git push -f -u origin master 

然后重新拉取:

git pull


 

This article was last edited at 2020-08-15 03:24:58

* *