如何git和gitlab镜像

时间:2014-08-05 13:19:01

标签: git gitlab

我是git和gitlab的新手。 我在服务器上有一个新的gitlab设置,在另一台服务器上有一个git repo。

1-在gitlab上创建一个新项目

2-然后使用:

git remote add origin git@192.168.2.70:pbx/mahnapbx.git
git push -u origin master

用于远程现有repo到我的新gitlab项目。

现在我可以在我的IDE(netbeans)中克隆我的gitlab repo并添加/编辑一些文件并提交/推送到我的gitlab项目然后我可以在gitlab中看到我的所有文件/提交

但问题是我现有的reop不更新...我无法在现有的Repo中看到我的新文件或编辑。

我该怎样做才能解决?

1 个答案:

答案 0 :(得分:0)

您还需要将更改推送到其他存储库。

添加另一个存储库:

git remote add other otherip/otherrepo

然后推送到那个

git push other master