Git: Difference between revisions
m added Category:System Administration using HotCat |
add git configs |
||
| Line 24: | Line 24: | ||
You might want to read about how we [[Git/migrating to git|migrate from Subversion to Git]] or how [http://julienrenaux.fr/2014/02/28/leading-the-svn-to-git-migration/ others have done it] | You might want to read about how we [[Git/migrating to git|migrate from Subversion to Git]] or how [http://julienrenaux.fr/2014/02/28/leading-the-svn-to-git-migration/ others have done it] | ||
== Initial Configuration == | |||
In your [https://git-scm.com/book/en/v2/Getting-Started-First-Time-Git-Setup first time setting up Git on a new computer], you want to configure your username and email among other settings. | |||
<source lang="bash"> | |||
git config --global user.name "Greg Rundlett" | |||
git config --global user.email greg@freephile.com | |||
git config --global core.editor vim | |||
git config --global diff.tool meld | |||
</source> | |||
== Tools == | == Tools == | ||