我最近尝试使用Cloud9 online IDE。首先创建一个Github仓库的克隆。我对git的常规本地使用相当简单(init,status,commit,push to Github,branch,edit,pull,merge ...),但因为我通常不克隆,所以我没有自动驾驶头如何:
this outline guide suggests using the same username for github and C9,但我正在寻找一个无杂乱的一步......
答案 0 :(得分:8)
如果你在cloud9中使用 github帐户 auth 并克隆一个Github项目,那么如果你推送它将推送到Github中的原始回购
[JJ] 如果您之前(通过命令行,而不是通过仪表板上的UI)克隆了Cloud9中的项目,则可以执行git remote add upstream git@github.com:your/repo.git
。现在您有另一个遥控器,你可以从(git pull upstream master
或推到git push upstream master
)。
答案 1 :(得分:1)
使用C9 CLI照常提交,然后只需从C9 CLI运行git push
,就像在机器上进行开发一样。