查看所有分支 git branch -a
提交 步骤
1. git add .(空格点别忘了)
2.git commit -m '本次提交说明'
3.git push origin <你要提交的分支名>
拉取
git pull origin <你要拉取的分支名>
查看历史提交
git log
创建并切换到新分支
1. git checkout <要新建的分支名称> -b
2. git push origin <要新建的分支名称> (将新分支提交)
推送到 其他分支
git push origin <你当前分支名>:<你要推送到的分支名>
设置远程跟踪
git branch --set-upstream-to=origin/远程分支名 本地分支名
//或
git branch --set-upstream 远程分支名
//或
git branch -u 远程分支名
忽略文件
.gitignore