git沒法同步

  • 出現問題: fatal: destination path 'test' already exists and is not an empty directory.

解決方法以下:git

  1. git init
  2. git remote add origin https://xxx@xx.git(remote是存放在遠程的一個計算機。在這裏指GitHub服務器。 在絕大多數場合咱們取origin這個名字指代遠程的代碼倉庫(指的就是https://github.com/username/Hello-World.git),這樣每次pull,fetch時均可以用origin來指代你要拉取或更新哪一個代碼倉庫的文件了
  3. git fetch
  4. git branch master origin/master
  5. git checkout master

而後你就能夠用 
git add . 
git commit -m 「提交信息」 
git push origin master 
對你的代碼進行提交上傳了。github

相關文章
相關標籤/搜索