From 6f2f059f33446d50ba2f029ae454c91dfdcffe04 Mon Sep 17 00:00:00 2001 From: Peter Ashford Date: Mon, 28 May 2018 00:14:50 -0700 Subject: [PATCH] Initial content for page added --- Workflow-Install-Git.md | 37 +++++++++++++++++++++++++++++++++++++ Workflow/Install-Git.md | 0 2 files changed, 37 insertions(+) create mode 100644 Workflow-Install-Git.md delete mode 100644 Workflow/Install-Git.md diff --git a/Workflow-Install-Git.md b/Workflow-Install-Git.md new file mode 100644 index 0000000..2aa060d --- /dev/null +++ b/Workflow-Install-Git.md @@ -0,0 +1,37 @@ +# Install Git + +To work with the ZFS software on Github, it's necessary to install the Git software on your computer and set it up. This page covers that process for some common Linux operating systems. Other Linux operating systems should be similar. + +## Install the Software Package + +The first step is to actually install the Git software package. This package can be found in the repositories used by most Linux distributions. If your distribution isn't listed here, or you'd like to install from source, please have a look in the [official Git documentation][git-install-linux]. + +### Red Hat and CentOS + +``` +# yum install git +``` + +### Fedora + +``` +$ sudo dnf install git +``` + +### Debian and Ubuntu + +``` +$ sudo apt install git +``` + +## Configuring Git + +Your user name and email address must be set within Git before you can make commits to the ZFS project. In addition, your preferred text editor should be set to whatever you would like to use. + +``` +$ git config --global user.name "John Doe" +$ git config --global user.email johndoe@example.com +$ git config --global core.editor emacs +``` + +[git-install-linux]: https://git-scm.com/download/linux \ No newline at end of file diff --git a/Workflow/Install-Git.md b/Workflow/Install-Git.md deleted file mode 100644 index e69de29..0000000