Skip to content

Latest commit

 

History

History
10 lines (8 loc) · 192 Bytes

git.md

File metadata and controls

10 lines (8 loc) · 192 Bytes

Git cheatsheet

  1. How to trigger a CI re-run without a new commit:
# Recreate last commit
git commit --amend --no-edit

# Force push
git push --force-with-lease origin [PR Branch]