Git Commands
Add new files to the rep
git add .
git status
git commit -m "some message here"
git push origin master
create new git branch
git branch [name]
git push origin [name]
switch to another branch
git checkout [branch_name]
Add new files to the rep
git add .
git status
git commit -m "some message here"
git push origin master
create new git branch
git branch [name]
git push origin [name]
switch to another branch
git checkout [branch_name]