git 命令
查看远程分支
git branch -a
查看本地分支
git branch
切换分支
git checkout 分支名
合并
git merage dev
提交操作
git add .
git comit -m “备注信息”
git push
拉取
git pull
git 命令
查看远程分支
git branch -a
查看本地分支
git branch
切换分支
git checkout 分支名
合并
git merage dev
提交操作
git add .
git comit -m “备注信息”
git push
拉取
git pull