我想将我的代码同步到我的github repo,所以每当我更新我的代码时,它都应该在repo中更新。是否有任何适当和有条理的方式来做到这一点。
答案 0 :(得分:0)
所以这就是我现在正在做的事情
<强> 1 强>
$ cd my-project
$ git init
$ git remote add origin GITHUB_URL
$ git pull origin master
$ git status
$ git add .
$ git commit -m "Init repo."
$ git push -u origin master
然后重复以下步骤
$ git add .
$ git commit -m "Init repo."
$ git push -u origin master