Pode ou não ser útil para as pessoas, mas eles aceleram muito as coisas para mim.
function feature {
git checkout -b feature/$1
}
function features {
git branch --list | grep feature/
}
function feature-sync {
git checkout feature/$1 &&
git pull origin feature/$1 &&
git push origin feature/$1;
}
function feature-merge {
git checkout feature/$1 &&
git pull origin feature/$1 &&
git checkout master &&
git pull origin master &&
git merge feature/$1 &&
git branch -d feature/$1;
}