🛠 工作中的使用
1、git checkout -b frature/20221026_st # 切换至新分支xxx
2、git branch # 查看当前分支
3、git branch -a # 查看远程分支,带*的是本地分支
4、提交到test分支测试
5、git checkout -b test origin/test # 切换到远程test分支
6、 git checkout feature/20221026_st # 切换成开发分支
7、git log # 复制刚刚提交的log的hash
8、git checkout test # 切回test分支
9、git cherry-pick hashid # 合并分支到当前分支
10、 git push # 推送到test分支
11、测试无误后推送到master分支
12、git checkout master # 切回主分支
13、git pull # 拉取更新
14、git cherry-pick hashid # 合并分支到当前分支
git reset --soft HEAD^ # 撤回上个commit
git reset --hard 提交id 回退到指定的id
git merge master # 将主分支代码同步到本地
网友评论