I have made several commits on different files, but so far I would like to push to my remote repository only a specific commit.
Is that possible?
|
|
Note that this pushes all commits up to and including the commit you choose. If you don't want that to happen, you should first use |
|||||||||||||||||||
|
|
Tried the suggested solution:
like this:
In my case master was 5 commits ahead and I just wanted to push my last commit but the above ended up pushing all of my changes up to and including the named commit. It seems to me that the cherry-pick method might be a better approach for this usecase. |
|||||||
|
|
I'd suggest using |
|||
|
|
|
I believe you would have to "git revert" back to that commit and then push it. Or you could
|
|||||||||||
|