我有一个我正在开发的网站,它的github是https://github.com/samclark2015/Project-Emerald。我在子目录中的用户文件夹下有repo。现在,当我将网站推送到github时,它将树更新为Sites / Project Emerald / ...我需要在我的github repo的根目录中项目emerald文件夹的内容。如何在PC上更改我的仓库的根目录?
答案 0 :(得分:0)
由于您刚刚在GitHub仓库中进行了第一次提交,最简单的方法是:
.git
”Site
目录
这会给:
# in Site/Project-Emerald
git init .
git add remote origin https://samclark2015@github.com/samclark2015/Project-Emerald.git
git add .
git commit -m "first commit, again"
git push -force origin master
然后你会直接在你的GitHub回购中看到:
PHP
SpryAssets
pictures
README
config.inc
...
“My Git repository is in the wrong root directory. Can I move it? (../
instead of ./
)”