Skip to content

Instantly share code, notes, and snippets.

@YumaInaura
Last active February 2, 2016 01:31
Show Gist options
  • Select an option

  • Save YumaInaura/e26424cbc546582a838c to your computer and use it in GitHub Desktop.

Select an option

Save YumaInaura/e26424cbc546582a838c to your computer and use it in GitHub Desktop.
Git | 現在のブランチルートから簡単に rebase -i できるようにする ref: http://qiita.com/Yinaura/items/984e743cdd7583bb8bdf
alias irebase='git rebase -i $(git merge-base master HEAD)'
[alias]
rbi = !git rebase -i $(git merge-base master HEAD)
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
[alias]
rbi = rebase -i $(git merge-base master HEAD)
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
[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