切换到工作目录,然后输入:
git log --pretty=oneline
你会看到多条记录,它们分别是由 Commit id+空格+名称 构成的。
选择一条你想回退的Commit id,然后输入:
git reset --hard [你的commit id]
然后,将修改推送到远程服务器:
git push -f -u origin master
然后重新拉取:
git pull
let today = new Beginning();
Click the left button to use the catalog.
切换到工作目录,然后输入:
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
190 Reads
內容: 當更新 .gitignore 文件後,TortoiseGit 的文件狀態有時無法即時更新,這是由 Status Cache 設定引起的。不同的緩存模式會影響文件狀態的檢查頻率和性能。 Status Cache 模式介紹 Default(預設) 使用內部緩存,加快狀態顯示。 適用場景:性能優先,文件變動不頻繁。 Shell Extended(推薦) 由 Windows Shell 提供更頻繁的狀態更新,立即反映 .gitignore 變化。 適用場景:頻繁修改 .gitignore 或需要即時文件狀態更新... OR | From:EKsumic
Today's comments have reached the limit. If you want to comment, please wait until tomorrow (UTC-Time).
There is 19h55m50s left until you can comment.