So currently I have some commits to my staging branch (merged from different branches)
68b9ba0 (latest commit)
0c24a8c (previous commit)
some commit(previous to above)
Now I dont want the latest commit merged to 'master' branch. I want to merge all the other previous commits(0c24a8c + other commits that were made before) to master.
Do i have to use something like gi-cherry pick for this?
I also need to deploy my changes to production environment through capistrano.
Do i need to create a specific tag which doesn't contain the latest commit(68b9ba0)? Can someone help me with it?
Note: I want to keep the latest commit 68b9ba0 in staging.