Skip to content

Commit

Permalink
Update git.md (#51)
Browse files Browse the repository at this point in the history
  • Loading branch information
remarcmij authored Oct 4, 2024
1 parent 92ad0b9 commit a9bb3d5
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion git-and-github/git.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit a9bb3d5

Please sign in to comment.