I have two branches in the GIT GUI - Development and Production. When code is pushed onto development, in the CLI, I do git pull and then git merge and git push on the production branch.
If I have 3 commits on the CLI on development branch:
Commit1 - COMMIT HASH 1 Commit2 - COMMIT HASH 2 Commit3 - COMMIT HASH 3
How can I merge only Commit3 and Commit1 without using any additional branch?