我有一个用于当前开发(本地工作副本)的 master 分支和一个 dev 分支。我需要将 master 的更改合并到我的 dev 分支上。在合并之前,我运行了 git stash 并发现了以下错误:
fatal: Not a git repository (or any of the parent directories): .git
为了调查这个错误,我运行了以下命令:
git status
git branch
git remote -v
. 都产生了同样的错误fatal: Not a git repository (or any of the parent directories): .git
我还尝试重置产生相同结果的分支的原点: git remote set-url origin https://github.com/Connexions/oer.exports.git
fatal: Not a git repository (or any of the parent directories): .git
我也无法将本地工作目录中的任何更改提交到我的开发分支。
有没有人对如何纠正这个问题有任何建议。