1

我在我的 Mac 中使用 git 来处理汇编。我可以成功地从远程分支中提取,但无法推送到它。

[13:59:36]  $ git pull origin master
From git.assembla.com:something
 * branch            master     -> FETCH_HEAD
Already up-to-date.
[14:00:00]  $ git push origin master
E, [2014-03-17T19:00:14.572139 #4924] ERROR -- : permission denied
fatal: Could not read from remote repository.

有人知道它有什么问题吗?

4

1 回答 1

3

您对该存储库具有读取权限,但不能对其进行写入。联系回购的所有者。

同时,你可以在自己的 fork 上工作,因为 git 是一个分布式 VCS,可以让你做类似的事情。

于 2014-03-17T19:07:43.167 回答