Git
git config --global user.name "Mona lisa"git initgit add .git commit -m "First commit"# remove .DS_Store file from GitHub that MAC OS X creates
# find and remove .DS_Storefind . -name .DS_Store -print0 | xargs -0 git rm -f --ignore-unmatch
# create .gitignore file, if neededtouch .gitignoreecho .DS_Store > .gitignore
# push changes to GitHubgit add .gitignoregit commit -m '.DS_Store removed'git push origin master# Create a new branch from the top of the main branch.git checkout -b my-feature-branch main# Delete Local branchgit branch -d <branchName>git branch -D <branchName># Delete Remote Branchgit push origin --delete <branchName>