You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/05_local_git_configs.md
+12-4Lines changed: 12 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,10 +8,11 @@ First, let's confirm your [Git Installation](https://git-scm.com/downloads):
8
8
9
9
```sh
10
10
git --version
11
-
git version 2.11.0
12
11
```
13
12
14
-
If you do not see a git version listed or this command returns an error, you may need to install Git.
13
+
If Git is installed, it will return your version: `git version 2.33.1`.
14
+
15
+
If you do not see a Git version listed or this command returns an error, you may need to install Git.
15
16
16
17
> To get the latest version of Git, visit [www.git-scm.com](https://www.git-scm.com).
17
18
@@ -54,10 +55,17 @@ git config --global --list
54
55
Git uses the config settings for your user name and email address to generate a unique fingerprint for each of the commits you create. You can't create commits without these settings:
The instructions for this exercise use the `--global` flag when identifying your `user.name` and `user.email` configuration settings. If you are currently using a computer without a private, personal account, don't apply the `--global` flag. This way, the settings will only be stored in our assignment repository. If you work in another repository on this same computer, you will need to set these configuration options again.
Different systems handle line endings and line breaks differently. If you open a file created on another system and do not have this config option set, git will think you made changes to the file based on the way your system handles this type of file.
97
+
Different systems handle line endings and line breaks differently. If you open a file created on another system and do not have this config option set, Git will think you made changes to the file based on the way your system handles this type of file.
90
98
91
99
> Memory Tip: `autocrlf` stands for auto carriage return line feed.
0 commit comments