正常用Git从github克隆项目的时候,会带上项目文件夹。
譬如执行:
root@ wwwroot]# git clone https://github.com/fatmkii/Laravel_test.gits
会生成/wwwroot/Laravel_test文件夹。
如果不想要这个“Laravel_test”文件夹的话,在stackoverflow上找到个非常性感的办法。
//在/wwwroot/上执行 git clone https://myrepo.com/git.git temp mv temp/.git ./.git rm -rf temp
再正常地用git pull就可以把仓库拉下来了。
文章评论