Entry tags:
Identifying yourself when committing in Git
Quick note:
We'd like you to use your Dreamwidth username / email when committing. This makes it a lot easier for us to track who did what in the future. It also helps us match the author of the commit with who you are, and lets us confirm that we've received your CLA.
Edit your config (~/.gitconfig) and add this section:
Then add your USERNAME@dreamwidth.org email to your Github account, so that the commits on Github will link to your identity on Github.
Please don't forget to tweak this setting on both your local computer and your Dreamhack if you do commits on both. Thank you!
If you're working on other projects, you can also just edit your author identity in just the Dreamwidth repositories (Thanks
shadowspar)
We'd like you to use your Dreamwidth username / email when committing. This makes it a lot easier for us to track who did what in the future. It also helps us match the author of the commit with who you are, and lets us confirm that we've received your CLA.
Edit your config (~/.gitconfig) and add this section:
[user]
name = USERNAME
email = USERNAME@dreamwidth.org
Then add your USERNAME@dreamwidth.org email to your Github account, so that the commits on Github will link to your identity on Github.
Please don't forget to tweak this setting on both your local computer and your Dreamhack if you do commits on both. Thank you!
If you're working on other projects, you can also just edit your author identity in just the Dreamwidth repositories (Thanks
![[personal profile]](https://www.dreamwidth.org/img/silk/identity/user.png)
no subject
In each of your dw-free and dw-nonfree checkouts, give these commands:
git config user.name "your name"
git config user.email "your@email"
or edit the .git/config file in each checkout and add the section
And then git will use those values for that checkout, overriding the global ones in $HOME/.gitconfig.
no subject