假设有如下文件夹结构:
repos
/repo1 <-- here is git repository
我愿意:
cd repos
我现在如何在/repo1
仍然在repos
目录中使用存储库?我不想做
cd repo1
git status (...)
git commit (...)
...
但类似:
git --git-dir=repo1 (...)
或者
git --work-tree=repo1 (...)
我想以这种风格执行所有git 命令, event git init
。什么是正确的方法?