git status 查看分支状态
git add . 提交到暂存区
git commit -m '优化' 提交到准备push
git pull 拉取最新分支
git push 提交到git 上
git branch 查看所有分支 git checkout 分支名字 切换到指定分支
git pull origin '分支名字' 拉取分支名字 最新代码
git push origin '分支名字' 提交分支名字
标签:origin,git,用法,名字,提交,push,分支 From: https://www.cnblogs.com/zhangershi/p/17657326.html