favorite-cmd-commands these are the three bash commands that I like : git init : (to create a repository) git status : (it tells you what exactlly the curreny status for the prository tthat you are in ) git add : (added new or changed files in the working directory to the git staging area) git commit -m"" : (commit the added fils) ls -a : (showing the hedden files) git log : (shows all the commits) git log -p : (show all the commits and the content of the filles) git checkout: (reseat a file to how it was in the last commit) git push : (is used too upload local repository to a remote repository )