Last active
February 2, 2016 01:31
-
-
Save YumaInaura/e26424cbc546582a838c to your computer and use it in GitHub Desktop.
Git | 現在のブランチルートから簡単に rebase -i できるようにする ref: http://qiita.com/Yinaura/items/984e743cdd7583bb8bdf
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| alias irebase='git rebase -i $(git merge-base master HEAD)' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [alias] | |
| rbi = !git rebase -i $(git merge-base master HEAD) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| pick 25cf857 Good touch the Green Green Glass | |
| pick d2057d7 Goodbye Joe he got a go me oh my oh | |
| pick 4ca967e Country load take me home |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [alias] | |
| rbi = rebase -i $(git merge-base master HEAD) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| pick 25cf857 Good touch the Green Green Glass | |
| pick d2057d7 Goodbye Joe he got a go me oh my oh | |
| pick 4ca967e Country load take me home |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [alias] | |
| rbi = rebase -i $(git merge-base master HEAD) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment