使用github同步laravel代码

时间:2015-12-10 21:07:08

标签: github laravel-5.1 github-for-windows

我想将我的代码同步到我的github repo,所以每当我更新我的代码时,它都应该在repo中更新。是否有任何适当和有条理的方式来做到这一点。

1 个答案:

答案 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