1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
| # 下载远程仓库的所有改动
$ git fetch <remote>
# 显示所有远程仓库
$ git remote -v
# 显示某个远程仓库的信息
$ git remote show <remote>
# 添加新的远程仓库,自定义命名
$ git remote add <shortname> <url>
# 同步远程仓库的变化合并到本地分支
$ git pull <remote> <branch>
# 推送本地指定分支到远程仓库
$ git push <remote> <branch>
# 推送本地分支到远程仓库并创建远程分支
$ git push --set-upstream origin <branch>
# 推送本地指定分支到远程仓库其他分支
$ git push origin <branch>:<new-branch>
|