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.
我想为我的开发工作保留一个单独的工作空间。我将 .git 文件从我的主目录移动到另一个名为“工作空间”的目录。现在,当我git init在workspace目录中使用时,一切正常,但是当我在主目录中使用时,它会在我的主目录中git init重新创建.git文件。我正在使用 Ubuntu,我的主目录是home/tyler。这是.git我默认存储文件的位置。
git init
workspace
.git
home/tyler
我的目录结构是:home/tyler home/workspace
最好的办法是克隆你的 git 工作区。
进入你想要你的 repo 副本的新文件夹并执行git clone [folder to your repo] ,这将在其中创建一个文件夹,其中包含你的 repo 文件夹的名称。
git clone [folder to your repo]
希望有帮助