HI All,
I have DEV,SIT,UAT branches and now want to move specific story from DEV to SIT i.e specific commit to SIT using pull request or cherry pick option in front end?
Now pull request is taking full difference code from source branch.
Cherry picking is not supported in the UI but it is easy to accomplish on the command line or using a tool like SourceTree.
You could do something roughly like this:
git checkout DEV
git log
# copy the commit hash
git checkout SIT
git cherry-pick <commit_hash_from_DEV>
# now that commit from DEV is in SIT (assuming there are no conflicts)
Here is some additional documentation: https://www.atlassian.com/git/tutorials/cherry-pick
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Certainly. In that case you'd want to create a feature branch off the main branch and cherry-pick the commits you'd like (using the command line or SourceTree). Then open a pull request against the main branch.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.