次のようなフォルダ構造があると仮定します。
repos
/repo1 <-- here is git repository
そうです:
cd repos
そして、ディレクトリに/repo1
残っている状態でリポジトリを使用するにはどうすればよいですか?repos
やりたくない
cd repo1
git status (...)
git commit (...)
...
しかし、次のようなものです。
git --git-dir=repo1 (...)
また
git --work-tree=repo1 (...)
そのスタイル、eventですべてのgitコマンドを実行したいと思いますgit init
。正しいアプローチは何ですか?