##Create a new branch associated with your card
git checkout developgit pull origin developgit 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 developgit pull origin developgit checkout [my-lovely-branch]git rebase -i develop