vendredi 18 septembre 2009

Git user.name user.email and default editor

Git is wonderful, much more than SVN :-)

but before to commit anything, don't forget to set the default user.name, user.email and editor:

git config --global user.name "John Doe"
git config --global user.email "john.doe@gmail.com"
git config --global core.editor "nano"