标题:
有用的git建议(3)
[打印本页]
作者:
look_w
时间:
2018-12-15 13:55
标题:
有用的git建议(3)
远程仓库管理
git remote add <name> <url> :添加一个将被追踪的远程仓库
git remote rm <name> :移除一个远程仓库
git push <remote> <remote-branch> ( gp , ggp ):将当前分支的本地 commit 推送到远程仓库
git fetch <remote> <remote-branch> :拉取远程仓库的最新 commit 到当前(本地)分支( <remote>/<branch> ),不会合并
git pull <remote> <remote-branch> ( gl , ggl ):拉取远程仓库的最新 commit 到当前(本地)分支,并自动 merge
git pull --rebase ( gup ):以 rebase 的方式进行合并,而不是 merge
其它有用的命令
git tag <name> :创建一个 tag(如:v1.3)
git push --tags :将本地 tags 推送到远程仓库
git push <tag> :推送指定的本地 tag 到远程
欢迎光临 电子技术论坛_中国专业的电子工程师学习交流社区-中电网技术论坛 (http://bbs.eccn.com/)
Powered by Discuz! 7.0.0