Linus Torvalds did not commit this
github.com
Linus Torvalds did not commit this
1–10 of 198 posts
Re: Linus Torvalds did not commit this
#2I guess it's worth noting here that you can sign your commits with GPG: https://git-scm.com/book/tr/v2/Git-Tools-Signing-Your-Work
Re: Linus Torvalds did not commit this
#3Re: Linus Torvalds did not commit this
#4Kinda hard to not come up with it when setting up your credentials is the first thing git wants you to do before you can commit anything. BTW. You can also overwrite them by command line switches per commit instead of setting environment variables. I guess it's worth noting here that you can sign your commits with GPG: https://git-scm.com/book/tr/v2/Git-Tools-Signing-Your-Work
Re: Linus Torvalds did not commit this
#5https://github.com/zixan/uberfareestimator/commit/b4c5a16408...
Re: Linus Torvalds did not commit this
#6Re: Linus Torvalds did not commit this
#7I think this is pretty well known. You could always sign your commits if you're really worried about someone sticking your email address in their git config.
Re: Linus Torvalds did not commit this
#8I think this is pretty well known. You could always sign your commits if you're really worried about someone sticking your email address in their git config.
I feel as though a GIT demo somewhere has already shown me how to impersonate Linus or anyone else.
Re: Linus Torvalds did not commit this
#9I think this is pretty well known. You could always sign your commits if you're really worried about someone sticking your email address in their git config.
Re: Linus Torvalds did not commit this
#10TBH we "exploit" this when accepting PRs for an open source project I work on. It's not really feasible for us to expect / force each PR author to have a clean commit history, so we basically do some squashing, then commit the "single" change as the original author before merging.