Example of an entire git workflow with rebasing
git clone ssh://[email protected]/project/repo.git
git checkout -b EXAMPLE-625-jira-ticket origin/develop
to branch off a remote
git commit -a -m 'Fixes issue in EXAMPLE-625'
git push origin EXAMPLE-625-jira-ticket