From b9f8036cb9501fa7c4c72ca6afcdf61ba08a646a Mon Sep 17 00:00:00 2001 From: Barry Alexander Date: Mon, 13 Apr 2015 12:13:41 -0700 Subject: [PATCH 1/2] [BA] Adding RHEL install supplement --- INSTALL.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/INSTALL.md b/INSTALL.md index b4ee879..35c259c 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -39,6 +39,17 @@ Using the brew package manager, simply run: brew install git-crypt +Red Hat Enterprise Linux +------------------------ + +In addition to installing git and openssl, you will need the following +support packages: + +yum install perl-CPAN +yum install gettext-devel +yum install expat-devel +yum install openssl-devel + Experimental Windows Support ---------------------------- From 5f089e4ad776d7140e69e72b0f3e1286953b6002 Mon Sep 17 00:00:00 2001 From: Barry Alexander Date: Tue, 14 Apr 2015 08:59:32 -0700 Subject: [PATCH 2/2] [BA] corrected RHEL install instructions --- INSTALL.md | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/INSTALL.md b/INSTALL.md index 35c259c..147dcf3 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -42,13 +42,16 @@ Using the brew package manager, simply run: Red Hat Enterprise Linux ------------------------ -In addition to installing git and openssl, you will need the following -support packages: -yum install perl-CPAN -yum install gettext-devel -yum install expat-devel -yum install openssl-devel + sudo su + yum install git + yum install openssl + yum install openssl-devel + exit + git clone https://github.com/AGWA/git-crypt.git + cd git-crypt + make + Experimental Windows Support ----------------------------