你如何克服一个Git仓库到一个特定的文件夹?

执行命令git clone git@github.com:whatever在当前文件夹中创建一个名为whatever的目录,并将Git存储库的内容放入该文件夹中:

/httpdocs/whatever/public

我的问题是,我需要克隆到我的当前目录中的Git存储库的内容,以便它们出现在Web服务器的正确位置:

/httpdocs/public

我知道如何在克隆存储库后移动文件,但这似乎打破了Git,我希望能够通过调用git pull来更新。 我怎样才能做到这一点?


选项A:

git clone git@github.com:whatever folder-name

选项B:

移动.git文件夹也是如此。

更好的是:

将你的工作拷贝保存在其他地方,并创建一个符号链接。


我想很多人问这个问题的例子都是这样的。 如果你在git仓库内容转储的目录中,运行:

git clone git@github.com:whatever .

“。” 在最后指定当前文件夹作为结帐文件夹。


进入文件夹..如果该文件夹为空,则:

git clone git@github.com:whatever .

其他

git init
git remote add origin PATH/TO/REPO
git fetch
git checkout -t origin/master
链接地址: http://www.djcxy.com/p/2629.html

上一篇: How do you clone a Git repository into a specific folder?

下一篇: How to clone a single branch in git?