I have three branches. Master is the production's branch. Staging for testing and Dev for development. How do I merge only specif commits into master from staging branch? I don't always need to merge all differences.
Asked
Active
Viewed 99 times
1 Answers
1
If you just need a specific commit, the easiest approach would be to cherry-pick it:
$ git cherry-pick <commit hash>

Mureinik
- 297,002
- 52
- 306
- 350