Giardinetto

Delete a local git repository

$ rm -rf <repo_folder>/.git

Remove a directory and all files inside $ rm -R <folder>

Add an upstream directory so you can pull down from a source if it gets updated

git clone <target_http_clone_url>
git remote add upstream <target_url>

Check on your git branch status

git remote -v

Pull down from a remote git main branch

git pull upstream main

Add upstream and partner to remote

git remote add upstream https://github.com/CodesmithLLC/<insert-repo-url>

git remote add partner https://github.com/<partner-github-handle/unit-1-js-fundamentals.git

Initializes a folder as a Git repo

git init

Prints a status of the files in the repo

git status

Add a file to the staging area

git add

Log out the recent operations in git

git log

Create or switch a branch

git checkout

Merge one branch with another

git merge