linux上搭建git服务器之3(git远程仓库)
Posted 狂奔的CD
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了linux上搭建git服务器之3(git远程仓库)相关的知识,希望对你有一定的参考价值。
正文
参考 https://git-scm.com/book/zh/v2/Git-%E5%9F%BA%E7%A1%80-%E8%BF%9C%E7%A8%8B%E4%BB%93%E5%BA%93%E7%9A%84%E4%BD%BF%E7%94%A8
1 查看远程仓库
git remote
git remote -v
2 添加远程仓库
运行 git remote add 添加一个新的远程 Git 仓库
git remote add pb https://github.com/paulboone/ticgit
现在你可以在命令行中使用字符串 pb 来代替整个 URL
3 拉取远程仓库
从远程仓库中获得数据,可以执行:$ git fetch
$ git fetch pb
4 推送到远程仓库
当你想分享你的项目时,必须将其推送到上游。 这个命令很简单:git push 。
$ git push origin master
master 分支推送到 origin 服务器
5 查看某个远程仓库
$ git remote show origin
* remote origin
Fetch URL: https://github.com/schacon/ticgit
Push URL: https://github.com/schacon/ticgit
HEAD branch: master
Remote branches:
master tracked
dev-branch tracked
Local branch configured for 'git pull':
master merges with remote master
Local ref configured for 'git push':
master pushes to master (up to date)
6 远程仓库的重命名与移除
重命名 rename
$ git remote rename pb paul
$ git remote
origin
paul
移除 remove
$ git remote remove paul
$ git remote
origin
以上是关于linux上搭建git服务器之3(git远程仓库)的主要内容,如果未能解决你的问题,请参考以下文章