Git task Notes Git commands Tell Git who you are Configure the author name and email address to be used with your commits. Note that Git strips some characters (for example trailing periods) from user.name.
1 2 3 |
git config --global user.name "Sam Smith" git config --global user.email sam@example.com |
Create a new local repository
1 |
git init |
Check out a repository Create a working copy of a local repository: […]