基本的Git指令
从github下载内容
1
| git clone https://github.com:xxxx/xxxx.git
|
添加github仓库并获取数据
1 2
| git remote add origin https://github.com:xxxx/xxxx.git git pull <远程主机名> <远程分支名>
|
pull相当于:
1 2 3
| git fetch origin master git log -p master..origin/master git merge origin/master
|