GIT
In your local Git, create a directory test and then change directory to test.
check out the branches and then create a branch called test.
Switch to the branch test
mkdir test; cd test
git branch
git checkout -b test -> you will be switched to test branch
git branch
Create a file and then run the following git commands
git add .
git commit -m "commit message"
git push origin test -> Very important as you are pushing it from test branch (most make mistakes and uses git push origin master)




git branch -D test



