Tuesday, December 9, 2014

[Git] setting up

1. Install git on your Linux.
2. Configure git settings with global commands if not
$ git config --global user.name "John Doe" 
$ git config --global user.email "johndoe@example.com"
 
   You can check the configuration if you already did before.
$ git config --list
 user.name=John Doe
 user.email=johndoe@example.com
 color.status=auto
 color.branch=auto
 color.interactive=auto
 color.diff=auto
...

3. 

No comments:

Post a Comment