forked from Workshops/How-To-Git-Started
initial commit
This commit is contained in:
parent
075644011a
commit
cb148d059c
21
README.md
Normal file
21
README.md
Normal file
@ -0,0 +1,21 @@
|
||||
# How to Git started
|
||||
|
||||
## Set up git
|
||||
Set up your git info
|
||||
|
||||
```
|
||||
*** Please tell me who you are.
|
||||
|
||||
Run
|
||||
|
||||
git config --global user.email "you@example.com"
|
||||
git config --global user.name "Your Name"
|
||||
|
||||
to set your account's default identity.
|
||||
Omit --global to set the identity only in this repository.
|
||||
```
|
||||
|
||||
If you want to save your https credentials run
|
||||
```
|
||||
git config --global credential.helper store
|
||||
```
|
Loading…
Reference in New Issue
Block a user