##Create a new branch associated with your card
git checkout develop
git pull origin develop
git checkout -b [my-lovely-branch]
##Commit and push your branch
git add .
git commit -m 'my commit message'
git push origin [my-lovely-branch]
##Rebase against develop
git checkout develop
git pull origin develop
git checkout [my-lovely-branch]
git rebase -i develop