You're enrolled in our new beta rewards program. Join our group to get the inside scoop and share your feedback.
Join groupJoin the community to find out what other Atlassian users are discussing, debating and creating.
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.
Hi everyone, We are looking to learn more about development teams’ workflows and pain points, especially around DevOps, integrations, administration, scale, security, and the related challeng...
Connect with like-minded Atlassian users at free events near you!
Find an eventConnect with like-minded Atlassian users at free events near you!
Unfortunately there are no Community Events near you at the moment.
Host an eventYou're one step closer to meeting fellow Atlassian users at your local event. Learn more about Community Events
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.