Signing
In the local repository you would do:
|
|
Tipps
- Undo last commit:
git reset --soft HEAD~1
Tools
- 2023-10-26 ◦ gittuf
Articles
-
2023-12-06 ◦ Understanding Git And Git Workflow - DEV Community
-
2023-10-18 ◦ Organizing multiple Git identities | Garrit’s Notes
Use multiple identities. Sth like:
1 2 3 4 5 6 7 8 9 10 11 12 13 14
[user] name = Garrit Franke email = garrit@slashdev.space [includeIf "gitdir:~/work/"] path = ~/.gitconfig-work [includeIf "gitdir:~/work/client2/"] path = ~/.gitconfig-client2 [includeIf "gitdir:~/sources/"] path = ~/.gitconfig-personal # ...
-
2023-01-25 ◦ git - How can I reconcile detached HEAD with master/origin? - Stack Overflow
- When “HEAD detached at origin/main”
-
2022-08-30 ◦ GIT - how and why to sign commits