基本命令
1 2 3 4 5
| git config --global user.name ziyangli git config --global user.email ziyang.d.lee@gmail.com
git config --list #查看配置的信息 git help push/config
|
新建仓库
1 2
| git remote add origin git@github.com:***/test.git # 添加源 git push -u origin master # push 新建仓库到 origin 源,同时设置默认 up-stream 分支为 master
|
建立 fork 与上游版本的同步
显示目前项目的上游路径都有哪些,自己的一般是 origin
打头
添加上游路径
1
| $ git remote add upstream https://github.com/ORIGINAL_OWNER/ORIGINAL_REPOSITORY.git
|
下载上游版本
Merge the changes from upstream/master
into your local master
branch
1
| $ git merge upstream/master
|