From 85965de10168b21c218bf9fbc2a8d9f12e4d0560 Mon Sep 17 00:00:00 2001 From: Neil Smith <neil.smith@falconviz.com> Date: Fri, 23 Sep 2022 10:13:24 -0700 Subject: [PATCH] Updated Readme --- README.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 27d0b8f..9bec0a3 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ This class repository will serve as a launching point and resource for student p ## Git Cheat Sheet -###Install Git: +### Install Git: Windows: https://github.com/git-for-windows/git/releases/download/v2.37.3.windows.1/Git-2.37.3-64-bit.exe MacOS: Install homebrew if you don't already have it, then: @@ -25,7 +25,7 @@ MacOS: Install homebrew if you don't already have it, then: $ brew install git ``` -###Open a command line/terminal: +### Open a command line/terminal: Windows: Option 1: Open file explorer and navigate to your project folder and right click on it. Select Git Bash Here (If on Windows 11 first select "Show more options") @@ -53,13 +53,13 @@ cd Projects/SYN100 ``` -###Clone this project: +### Clone this project: ``` git clone https://gitlab.nrp-nautilus.io/syn100/digitally-documenting-climatic-change.git ``` -###Setup your name and email for gitlab (Use the email you signed into gitlab) +### Setup your name and email for gitlab (Use the email you signed into gitlab) ``` git config --global user.name "FIRST_NAME LAST_NAME" ``` @@ -67,13 +67,13 @@ git config --global user.name "FIRST_NAME LAST_NAME" git config --global user.email "MY_NAME@example.com" ``` -###Find out what files you have modified or added to your local repo: +### Find out what files you have modified or added to your local repo: ``` cd digitally-documenting-climatic-change git status ``` -###Add untracked files to your local repo: +### Add untracked files to your local repo: ``` git add yournewfilename.extension ``` @@ -82,17 +82,17 @@ You can also add a whole folder of files: git add thefoldername ``` -###Commit your changes to the local repo: +### Commit your changes to the local repo: ``` git commit -am "note about your commit" ``` -###Push your changes to the remote repo on gitlab +### Push your changes to the remote repo on gitlab ``` git push ``` -###Pull changes made by others to your local repo: +### Pull changes made by others to your local repo: ``` git pull ``` \ No newline at end of file -- GitLab