##Basic Git Bash Commands:
git clone "repoURL"-
initial import of entire cloud report into local folder
git log lists the commits made in that repository in reverse chronological order
includes Author, Date and author's comment
git log --oneline only includes author comments
git status
displays files that were modified and need to pushed
git pull pulls from cloud repo to local repo
git reset --hard
####How to push all changes to cloud repo
-
git add -A Add to index all files
-
git commit -m "message" stamps a commit in the repo log
-
git push pushes changes to cloud repo
Extra Notes:
#####"git add -A" does the 2 operations below:
-
git add . add to index only files created/modified and not those deleted
-
git add -u add to index only files deleted/modified and not those created
creating a file called .gitignore