Last active
April 28, 2020 08:19
-
-
Save akserikawa/fe8a31e1b5a79c6b324894e10037e633 to your computer and use it in GitHub Desktop.
Git Tips
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Update one commit date, so it gets processed as new | |
git commit --amend --date="now" | |
git push origin {branch} --force | |
# Check diverged commits between local and remote branch | |
git log HEAD..origin/staging |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment