远程仓库管理- 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 到远程
|