如何执行git reset --hard
- 通过从文件中读取提交哈希
答案 0 :(得分:1)
我假设你因为标题中的TortoiseGit而在Windows上。
给出 hash.txt 只需" a7abda785"作为其内容(或任何哈希值),您可以使用 hash.txt 中的哈希运行此批处理文件来执行git reset
:
@echo off
set /p HASH= < hash.txt
git reset --hard %HASH%
我们通过重定向文件内容自动提供的/p
sets the variable by prompting the user for input。
使用此脚本,您可以包括:
git reset
答案 1 :(得分:1)