当前位置:网站首页>How to use cherry pick?
How to use cherry pick?
2022-07-07 11:09:00 【Have a good time I】
Multi branch development , Then merge from the test branch to the production branch , Some content of the test branch will not be online this time , So it can't be full merge, How to operate at this time ?
You need to use git cherry-pick
The following is Ruan Yifeng's tutorial http://www.ruanyifeng.com/blog/2020/04/git-cherry-pick.html
For multi branch code bases , Moving code from one branch to another is a common requirement .
There are two situations . One situation is , You need all the code changes for the other branch , So take the merger (git merge). The other case is , You just need some code changes ( Some submit ), You can use Cherry pick.
One 、 Basic usage
git cherry-pick Role of command , Is to submit the specified (commit) Apply to other branches .
$ git cherry-pick
The above command will submit the specified to commitHash, Apply to current branch . This will generate a new commit in the current branch , Of course, their hash values will be different .
for instance , Code warehouse has master and feature Two branches .
a - b - c - d Master
\
e - f - g Feature
Will now submit f Applied to the master Branch .
# Switch to master Branch
$ git checkout master
# Cherry pick operation
$ git cherry-pick f
After the above operation is completed , The code base looks like this .
a - b - c - d - f Master
\
e - f - g Feature
You can see from above ,master A commit... Is added at the end of the branch f.
git cherry-pick Arguments to the command , Not necessarily the submitted hash value , Branch names are also OK , Represents the latest commit to transfer the branch .
$ git cherry-pick feature
The above code indicates that feature The last commit of the branch , Move to the current branch .
Two 、 Transfer multiple submissions
Cherry pick Support transferring multiple submissions at one time .
$ git cherry-pick <HashA> <HashB>
The order above will A and B Two commits are applied to the current branch . This will generate two corresponding new submissions in the current branch .
If you want to transfer a series of consecutive submissions , You can use the following simple syntax .
$ git cherry-pick A..B
The above command can be transferred from A To B All submissions for . They must be placed in the correct order : Submit A Must be submitted before B, Otherwise, the command will fail , But there is no error .
Be careful , Use the command above , Submit A Will not be included in Cherry pick in . If you want to include a submission A, You can use the following syntax .
$ git cherry-pick A^..B
3、 ... and 、 Configuration item
git cherry-pick Common configuration items of the command are as follows .
(1)-e,–edit
Open external editor , Edit submit information .
(2)-n,–no-commit
Update workspace and staging only , No new submissions .
(3)-x
Add a line to the end of the submission (cherry picked from commit …), It is convenient to find out how this submission is generated in the future .
(4)-s,–signoff
Add a line of operator's signature at the end of the submitted information , Indicates who performed the operation .
(5)-m parent-number,–mainline parent-number
If the original commit is a merge node , Merging from two branches , that Cherry pick Default will fail , Because it doesn't know which branch of code change to take .
-m Configuration items tell Git, Which branch changes should be used . Its parameters parent-number It is a slave. 1 The starting integer , Represents the parent branch number of the original submission .
$ git cherry-pick -m 1
The above command says ,Cherry pick Adopt submission commitHash From number 1 Changes in the parent branch of .
Generally speaking ,1 No. parent branch is the branch that accepts changes (the branch being merged into),2 Parent branch No. is the branch that is the source of the change (the branch being merged from).
Four 、 Code conflict
If there is a code conflict during the operation ,Cherry pick Will stop , Let the user decide how to proceed .
(1)–continue
After the user resolves the code conflict , The first step is to add the modified file back to the staging area (git add .), The second step is to use the following command , Give Way Cherry pick The process continues .
$ git cherry-pick --continue
(2)–abort
After a code conflict , Give up the merger , Back to what it was like before the operation .
(3)–quit
After a code conflict , sign out Cherry pick, But don't go back to what it was before .
5、 ... and 、 Move to another code base
Cherry pick It also supports the submission of transferring another code base , The method is to first add the library as a remote warehouse .
$ git remote add target git://gitUrl
The above command adds a remote warehouse target.
then , Grab the remote code to the local .
$ git fetch target
The above command grabs the remote code warehouse to the local .
next , Check the submissions to be transferred from the remote warehouse , Get its hash value .
$ git log target/master
Last , Use git cherry-pick Command transfer commit .
$ git cherry-pick <commitHash>
边栏推荐
- 基于DE2 115开发板驱动HC_SR04超声波测距模块【附源码】
- [C #] the solution of WinForm operation zoom (blur)
- Go slice comparison
- What are the test preparation materials and methods for soft exam information processing technicians?
- 滚动踩坑--UNI_APP(八)
- 【pyqt】tableWidget里的cellWidget使用信号与槽机制
- JSON format query of MySQL
- Typescript interface inheritance
- 书签整理-程序员常用网站导航
- SQL Server 知识汇集11 : 约束
猜你喜欢
![[untitled]](/img/8e/e968d4629004bb0c3ee70328b6777b.jpg)
[untitled]

IDEA快捷键大全

【OneNote】无法连接到网络,无法同步问题

Shardingsphere sub database and table examples (logical table, real table, binding table, broadcast table, single table)

PostgreSQL中的表复制

Find the root of equation ax^2+bx+c=0 (C language)

Online hard core tools

seata 1.3.0 四種模式解决分布式事務(AT、TCC、SAGA、XA)

uniCloud
![[recommendation system 02] deepfm, youtubednn, DSSM, MMOE](/img/d5/33765983e6b98235ca085f503a1272.png)
[recommendation system 02] deepfm, youtubednn, DSSM, MMOE
随机推荐
Which securities company is the best and safest to open an account for the subscription of new shares
The seventh training assignment
Simple and easy to modify spring frame components
shardingsphere分库分表示例(逻辑表,真实表,绑定表,广播表,单表)
2021-05-21
[C #] the solution of WinForm operation zoom (blur)
请问申购新股哪个证券公司开户是最好最安全的
长列表性能优化方案 memo
Kitex retry mechanism
Use load_ decathlon_ Datalist (Monai) fast loading JSON data
When do you usually get grades in the soft exam? Online pedaling?
SQL Server knowledge collection 11: Constraints
How to successfully pass the senior system architecture designer in the second half of the year?
[machine learning 03] Lagrange multiplier method
Mysql的json格式查询
[untitled]
PR Lecture Notes
书签整理-程序员常用网站导航
2022.7.4DAY596
Transaction rolled back because it has been marked as rollback only