-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
8 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -38,9 +38,16 @@ Now that you have GIT installed, it's important to make a basic configuration. I | |
git config --global user.name "Your name" | ||
git config --global user.email "[email protected]" | ||
``` | ||
|
||
This makes sure GIT is able to identify you as the person that uses it to save your files and folders. | ||
|
||
In addition, if you are using a Windows computer, issue the following command: | ||
|
||
```bash | ||
git config --global core.autocrlf false | ||
``` | ||
|
||
This ensures that your files contain the same line endings as your fellow trainees using Mac or Linux computers. | ||
|
||
## Basic GIT commands | ||
|
||
You'll use GIT like any software you execute through the CLI. So let's go deeper into the commands you use and what they do so that you can start using GIT for all of your projects. | ||
|