From 4110585a640ca795f510a97f70fb69da34741a8e Mon Sep 17 00:00:00 2001 From: Peter 201943 Mangelsdorf <pjm349@drexel.edu> Date: Fri, 4 Mar 2022 20:26:00 -0500 Subject: [PATCH] update changelog with install mention; CORRECT install procedure order --- CHANGELOG.md | 3 +++ INSTALL.md | 14 +++++++------- 2 files changed, 10 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 895aab1..52e621e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,9 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). ## [2022-03-04](https://gitlab.cci.drexel.edu/courseeval/team-blue/-/commit/1fb12013d0045e2de1e9cead69186837ec64e8ce) +### Added +- Created a custom [Installation Guide](INSTALL.md) for working with the project + ### Changed - Moved all documents from `documents/` to the OneDrive (privacy) - Updated EvaP fork from GitHub diff --git a/INSTALL.md b/INSTALL.md index dafa54e..9cb9e8c 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -7,19 +7,19 @@ ## 3. [Download VirtualBox](https://www.virtualbox.org/wiki/Downloads) or an equivalent compatible Virtual Machine System -## 4. Cleanup Line Endings (Windows Only) - -Make sure you are in the `team-blue` directory and can see the `.git` directory before running this command. +## 4. Launch Git Bash with Administrative Privileges (Windows Only) for any following commands +## 5. Clone the Team Repo ```bash -git config core.autocrlf input +git clone --recurse-submodules git@gitlab.cci.drexel.edu:courseeval/team-blue.git se420-team-blue ``` -## 5. Launch Git Bash with Administrative Privileges (Windows Only) for any following commands +## 6. Cleanup Line Endings (Windows Only) + +Make sure you are in the `team-blue` directory and can see the `.git` directory before running this command. -## 6. Clone the Team Repo ```bash -git clone --recurse-submodules git@gitlab.cci.drexel.edu:courseeval/team-blue.git se420-team-blue +git config core.autocrlf input ``` ## 7. Navigate to the EvaP Directory -- GitLab