1

我已经安装GitHub Client到我的系统上。

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

我们有 GitHub 私有存储库。

请让我知道以解决此问题。

4

2 回答 2

0

在点击此链接之前已经提出了类似的问题,希望它可以帮助您。

基本流程是这样的。

# 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
于 2013-03-07T06:03:57.380 回答
0

如果您的同事应该:

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

您应该将他/她添加到该项目的合作者列表中:请参阅“ GitHub 帮助页面”。

请注意,用户始终可以在私有存储库上进行协作,即使是免费计划也是如此。
即,如果用户有一个 GitHub 帐户(甚至是免费帐户),他/她可以被添加到私有存储库中。

于 2013-03-07T06:46:41.577 回答