[フレーム]
Last Updated: February 25, 2016
·
502
· scottymeuk

Git Features

May or may not be useful for people, but they speed things up a lot for me.

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ドル;
}

AltStyle によって変換されたページ (->オリジナル) /