GitHub clone and Working with commands - veracity-dev/github-xlsx GitHub Wiki
GitHub Clone
git clone <url>Check all local and remote branches
git branch -aRemove origin branches that were deleted remotely
git remote prune origin
git fetch --pruneFetch and pull from remote
git fetch
git pullCreate a new branch and switch to it
git checkout -b <branchname>After doing the changes,
Stage changes
git add <filename.type>commit the changes
git commit -m "<comment>"Push the changes to remote
git push