Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions book/01-introduction/sections/installing.asc
Original file line number Diff line number Diff line change
Expand Up @@ -14,22 +14,22 @@ Since Git is quite excellent at preserving backwards compatibility, any version
==== Installing on Linux

(((Linux, installing)))
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.
If you're on Fedora for example (or any closely-related RPM-based distro such as RHEL or CentOS), you can use `dnf`:
If you want to install the basic Git tools on Linux via a binary installer, you can generally do so through the package management tool that comes with your distribution.
If you're on Fedora (or any closely-related RPM-based distribution, such as RHEL or CentOS), you can use `dnf`:

[source,console]
----
$ sudo dnf install git-all
----

If you're on a Debian-based distribution like Ubuntu, try `apt-get`:
If you're on a Debian-based distribution, such as Ubuntu, try `apt`:

[source,console]
----
$ sudo apt-get install git-all
$ sudo apt install git-all
----

For more options, there are instructions for installing on several different Unix flavors on the Git website, at http://git-scm.com/download/linux[].
For more options, there are instructions for installing on several different Unix distributions on the Git website, at http://git-scm.com/download/linux[].

==== Installing on Mac

Expand Down Expand Up @@ -65,11 +65,11 @@ Note that this is a project called Git for Windows, which is separate from Git i
To get an automated installation you can use the https://chocolatey.org/packages/git[Git Chocolatey package].
Note that the Chocolatey package is community maintained.

Another easy way to get Git installed is by installing GitHub for Windows.
Another easy way to get Git installed is by installing GitHub Desktop.
The installer includes a command line version of Git as well as the GUI.
It also works well with Powershell, and sets up solid credential caching and sane CRLF settings.(((Powershell)))(((CRLF)))(((credential caching)))
We'll learn more about those things a little later, but suffice it to say they're things you want.
You can download this from the GitHub for Windows website, at http://windows.github.com[].
You can download this from the https://desktop.github.com/[GitHub Desktop website].

==== Installing from Source

Expand Down