- Set your username:
git config --global user.name "FIRST_NAME LAST_NAME"
- Set your email address:
git config --global user.email "[email protected]"
git --version
git status
git config --list
git init
git add fileName/.
git rm --cached fileName/.
git commit -m "First commit"
git branch -D <branch_name>
git push -d <remote_name> <branchname>
eg: git push -d origin test