To cherry-pick a specific commit, you use the command git cherry-pick ________.
- commit-hash
- git-apply
- git-merge
- git-rebase
The correct option is a) commit-hash. This command allows you to apply the changes introduced by a specific commit onto your current branch. You need to provide the commit hash of the desired commit.
Loading...
Related Quiz
- To change the commit message of the most recent commit, use the command git commit --_______.
- What is the difference between git clone and git fork?
- What advanced Git feature can be crucial for performance optimization in large-scale enterprise projects?
- How does splitting a large repository into smaller ones affect Git performance?
- In Git, __________ can be used to verify the integrity and origin of commits.