From b9eb4234a51a771594cd95bea91d4945fc70807f Mon Sep 17 00:00:00 2001 From: Lev Date: Fri, 3 Sep 2021 23:15:15 -0500 Subject: [PATCH] Update - ammend test --- .../Week 18/Basic Git Commands.txt | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/CM2020 Agile Software Projects/Week 18/Basic Git Commands.txt b/CM2020 Agile Software Projects/Week 18/Basic Git Commands.txt index d4a5f9f..29f023d 100644 --- a/CM2020 Agile Software Projects/Week 18/Basic Git Commands.txt +++ b/CM2020 Agile Software Projects/Week 18/Basic Git Commands.txt @@ -4,3 +4,13 @@ git init Get the git status (Name of Branch, Commit section, Stating section) git status +Add a file to the staging area +git add filename.txt + +Remove a file from the staging area +git rm filename.txt + +Commit a file (all -a, -m Message) +git commit -a -m "My message" + +Undo a commit