8 lines
295 B
Bash
8 lines
295 B
Bash
git config user.name 'Lukas Vacula'
|
|
git config user.email 'lukas@lvacula.com'
|
|
# To retroactively fix commits, use the following command:
|
|
# git rebase -r --root --exec "git commit --amend --no-edit --reset-author"
|
|
# git push --force
|
|
# **WARNING** This will set *all* commits to the same author.
|
|
|