如何从github存储库获取更新?

时间:2013-03-07 05:55:19

标签: github

我已将GitHub Client安装到我的系统中。

我很容易将更改提交到存储库。但我的同事试图接受我的更新,他无法从存储库中获取应用程序。

我们正在使用GitHub私有存储库。

请让我知道解决这个问题。

2 个答案:

答案 0 :(得分:0)

在此之前已经提出了类似的问题link希望它可以帮到你。

基本流程是这样的。

# clone the repository (from github, for example)
git clone git@github.com:username/reponame.git
cd reponame    

# edit some files

# add them to the index
git add file1.txt
git add file2.gif

# review your changes
git status    

# commit the changes
git commit -m "Decription of my change"

# push them back to the remote repository
git push origin master

答案 1 :(得分:0)

如果你的同事应该:

  • 访问您的私人仓库
  • 能够直接回馈(git push)到私人仓库

您应该将他/她添加到此项目的协作者列表中:请参阅“GitHub help page”。

请注意,即使是免费计划,用户也可以随时在私人存储库上进行协作 即如果用户拥有GitHub帐户(即使是免费帐户),他/她也可以添加到私人存储库。