Git Cmd Notes
Git Basics for beginners [Create git repo] > git init [see what happened your git] > git status [add to track or update tracked files] [for all unstaged files] git add . [for specified files] git add .\example.txt [.gitignore file] (dont add unwanted files to repo, create .gitignore file) > [inside of .gitignore file] folder/unwantedNote.txt itsWholeFolder/ # ignore all .a files *.a # but do track lib.a, even though you're ignoring ....