Github显示父目录

时间:2012-04-18 02:04:44

标签: github tree project

我有一个我正在开发的网站,它的github是https://github.com/samclark2015/Project-Emerald。我在子目录中的用户文件夹下有repo。现在,当我将网站推送到github时,它将树更新为Sites / Project Emerald / ...我需要在我的github repo的根目录中项目emerald文件夹的内容。如何在PC上更改我的仓库的根目录?

1 个答案:

答案 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 ./)

中提到了其他替代方案