現在の開発用のマスターブランチと開発ブランチがあります(ローカル作業コピー)。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
ローカルの作業ディレクトリからdevブランチにも変更をコミットできません。
この問題を修正する方法について誰かが何か提案がありますか?