Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个裸存储库。
由于未知原因,该/refs/head/master文件已被删除。
/refs/head/master
因为我不知道最新提交的 id,所以我想知道如何恢复它以便我可以重新创建主文件(保存 id)。
用于git reflog查找您的 HEAD 所在的位置。
git reflog
注意适当提交的哈希并执行git branch master <hash>
git branch master <hash>