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: book/01-introduction/sections/installing.asc
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,22 +14,22 @@ Since Git is quite excellent at preserving backwards compatibility, any version
14
14
==== Installing on Linux
15
15
16
16
(((Linux, installing)))
17
-
If you want to install the basic Git tools on Linux via a binary installer, you can generally do so through the basic package-management tool that comes with your distribution.
18
-
If you're on Fedora for example (or any closely-related RPM-based distro such as RHEL or CentOS), you can use `dnf`:
17
+
If you want to install the basic Git tools on Linux via a binary installer, you can generally do so through the packagemanagement tool that comes with your distribution.
18
+
If you're on Fedora (or any closely-related RPM-based distribution, such as RHEL or CentOS), you can use `dnf`:
19
19
20
20
[source,console]
21
21
----
22
22
$ sudo dnf install git-all
23
23
----
24
24
25
-
If you're on a Debian-based distribution like Ubuntu, try `apt-get`:
25
+
If you're on a Debian-based distribution, such as Ubuntu, try `apt`:
26
26
27
27
[source,console]
28
28
----
29
-
$ sudo apt-get install git-all
29
+
$ sudo apt install git-all
30
30
----
31
31
32
-
For more options, there are instructions for installing on several different Unix flavors on the Git website, at http://git-scm.com/download/linux[].
32
+
For more options, there are instructions for installing on several different Unix distributions on the Git website, at http://git-scm.com/download/linux[].
33
33
34
34
==== Installing on Mac
35
35
@@ -65,11 +65,11 @@ Note that this is a project called Git for Windows, which is separate from Git i
65
65
To get an automated installation you can use the https://chocolatey.org/packages/git[Git Chocolatey package].
66
66
Note that the Chocolatey package is community maintained.
67
67
68
-
Another easy way to get Git installed is by installing GitHub for Windows.
68
+
Another easy way to get Git installed is by installing GitHub Desktop.
69
69
The installer includes a command line version of Git as well as the GUI.
70
70
It also works well with Powershell, and sets up solid credential caching and sane CRLF settings.(((Powershell)))(((CRLF)))(((credential caching)))
71
71
We'll learn more about those things a little later, but suffice it to say they're things you want.
72
-
You can download this from the GitHub for Windows website, at http://windows.github.com[].
72
+
You can download this from the https://desktop.github.com/[GitHub Desktop website].
0 commit comments