Push a Specific Git Commit to Remote
TIL that its possible to push a specific Git Commit to Remote.
git push origin <commit-sha>:<branch>
Though, if there are any un-pushed commits before <commit-sha>, then those will be pushed. So if we want to push <commit-sha> alone then we need to ...
arunvelsriram.dev1 min read