Git - 远程添加存储库

在Git教程的这一章中,您将学习如何在您的本地项目目录添加远程Git仓库。比如你正在从事的项目,因为很多天,但仍然没有增加的Git下这个项目。现在你已经创建一个 远程Git仓库,并希望在它加入您的项目。
  • 本地项目目录:/home/rahul/app1
  • 远程Git的网址:git@remote.example.com:project/app1.git

添加远程仓库

现在进入到你的项目目录,并使用远程Git add命令本地目录连接到远程存储库。
$ cd /home/rahul/app1

$ git remote add origin git@remote.example.com:project/app1.git

检查远程URL

要检查远程URL在下面的命令代码中使用的本地副本。在结果你会看到两个网址,一个用于读取(fetch),一个用于推送(push)。
rahul@youcl:~/app1$ git remote -v 

origin	git@remote.example.com:project/app1.git (fetch)
origin	git@remote.example.com:project/app1.git (push)
赞(52) 打赏
未经允许不得转载:优客志 » 系统运维
分享到:

觉得文章有用就打赏一下文章作者

支付宝扫一扫打赏

微信扫一扫打赏