https://www.yiibai.com/git/git_basic_concepts.html
1、进入指定文件夹 git init
2、查看所有分支 git remote、git remote-v(详情)
3、添加新的远程、生成新分支 git remote add staging git://git.kernel.org/.../gregkh/staging.git
4、git pull
命令用于从另一个存储库或本地分支获取并集成(整合)。git pull
命令的作用是:取回远程主机某个分支的更新,再与本地的指定分支合并,它的完整格式稍稍有点复杂。
将远程存储库中的更改合并到当前分支中。在默认模式下,git pull
是git fetch
后跟git merge FETCH_HEAD
的缩写。更准确地说,git pull
使用给定的参数运行git fetch
,并调用git merge
将检索到的分支头合并到当前分支中。 使用--rebase
,它运行git rebase
而不是git merge
。
git pull origin next
5、git add、git commit -m ''、git push origin master