2012-04-18 57 views
1

我有一個網站,我正在開發,它的github是https://github.com/samclark2015/Project-Emerald。我在我的用戶文件夾下的子目錄中有回購。現在,當我將網站推送到github時,它將樹更新爲Sites/Project Emerald/...我需要我的github回購站根目錄中的項目祖母綠文件夾的內容。我如何在PC上更改我的回購的根?Github顯示父目錄

回答

0

既然你只是沒你先在GitHub的回購承諾,最簡單的方法是:

  • 刪除您的本地.git目錄必須在「Site
  • 在本地重新創建回購,和力推:

這將使:

# in Site/Project-Emerald 
git init . 
git add remote origin https://[email protected]/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 ./)

+0

對不起提及,但我的樹仍然是它的方式... – 2012-04-18 23:13:54