#origin git@github.com:CodingJury/astro-website.git (fetch)
#origin git@github.com:CodingJury/astro-website.git (push)
git status #displays the state of the working directory and the staging area
git branch #list the local branches
git branch -a #list all branches (remote as well as local)
git fetch --prune #fetch all remote branch refs
#and delete remote refs that are no longer in use
git checkout -b <new_branch_name> <existing_branch_name> #Create checkout from the existing branch to work on feature
git commit -m "COMMIT MESSAGE"
git commit --amend --no-edit