git via cmd
Some useful git commands to assist with development process.
create a local branch and switch to it
git checkout {branchname}
stage all changes in local dir
git add .
create a new commit with a message
git commit -m {message-here}
push local changes to remote branch
git push
pull changes from remote branch
git pull origin {branchname}
rebase feature branch from develop
git checkout develop
git pull origin develop
git checkout feature/branch123
git rebase develop
git push --force
note
Better written more helpful content than this: https://gitsheet.wtf/