赞
踩
Git命令切换分支、同步远程分支、删除本地分支、回退至历史版本
git remote show origin
git remote set-url origin {git地址}
1、git branch -vv
2、git config --lis
git branch -d 要删除的分支名称
git fetch origin api_v1
api_v1是我的在远仓库创建的分支,现在我把它同步到本地
git checkout api_v1
git log
git reset --hard 提交的标识
//切换至A分支 并更新最新代码
git checkout A
git pull
//切换到B分支
git checkout B
//开始合并
git merge A
//合并完成 有冲突解决冲突
git push
git remote show origin
git commit --amend
git remote -v
-------------------------- 参考 --------------------------
https://blog.csdn.net/qq_31248809/article/details/117551323
-------------------------- 参考 --------------------------
远程分支重命名 (已经推送远程-假设本地分支和远程对应分支名称相同)
git branch -m oldName newName
git push --delete origin oldName
git push origin newName
git branch --set-upstream-to origin/newName
eg:
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。