当前位置:网站首页>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>
边栏推荐
- PR Lecture Notes
- Using tansformer to segment three-dimensional abdominal multiple organs -- actual battle of unetr
- Typescript interface inheritance
- 从色情直播到直播电商
- What are the contents of the intermediate soft test, the software designer test, and the test outline?
- The sixth training assignment
- SQL Server 知识汇集11 : 约束
- 2022.7.3DAY595
- Laya common script commands
- Unity determines whether the mouse clicks on the UI
猜你喜欢
verilog设计抢答器【附源码】
[pyqt] the cellwidget in tablewidget uses signal and slot mechanism
What are the contents of the intermediate soft test, the software designer test, and the test outline?
SQL Server 知识汇集9 : 修改数据
Wallhaven壁纸桌面版
SQL Server knowledge gathering 9: modifying data
How much review time does it usually take to take the intermediate soft exam?
Unable to open kernel device '\.\vmcidev\vmx': operation completed successfully. Reboot after installing vmware workstation? Module "devicepoweron" failed to start. Failed to start the virtual machine
[OneNote] can't connect to the network and can't sync the problem
Is the soft test intermediate useful??
随机推荐
Opencv installation and environment configuration - vs2017
滚动踩坑--UNI_APP(八)
请问申购新股哪个证券公司开户是最好最安全的
單調性約束與反單調性約束的區別 monotonicity and anti-monotonicity constraint
Rolling puddle Uni_ App (VIII)
Seata 1.3.0 four modes to solve distributed transactions (at, TCC, Saga, XA)
How to get hardware information in unity
What does intermediate software evaluator test
[pyqt] the cellwidget in tablewidget uses signal and slot mechanism
How to prepare for the advanced soft test (network planning designer)?
Arduino receives and sends strings
[STM32] actual combat 3.1 - drive 42 stepper motors with STM32 and tb6600 drivers (I)
Arduino board description
Find the greatest common divisor and the least common multiple (C language)
Online hard core tools
Use of dotween
China Southern Airlines pa3.1
Long list performance optimization scheme memo
[untitled]
seata 1.3.0 四種模式解决分布式事務(AT、TCC、SAGA、XA)