600 B
Executable File
600 B
Executable File
author | date | title | tags | |||
---|---|---|---|---|---|---|
Alvie Rahman | \today | Git |
|
Fix detached head
From https://stackoverflow.com/a/10229202:
To Delete Changes
git checkout main
To Keep Changes
git branch temp
git checkout main
git pull . temp
git branch -D temp
Retroactively Sign Commits
From https://webdevstudios.com/2020/05/26/retroactively-sign-git-commits/:
-
git rebase -i HEAD~<number of commits to sign>
-
Replace
pick
withreword
:In vim:
:%s/^pick/reword/:wq
-
Save all commit messages
-
Force push to remote