Advertisement
Guest User

Untitled

a guest
Jul 27th, 2014
177
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.73 KB | None | 0 0
  1. git rebase [-i | --interactive] [options] [--exec <cmd>] [--onto <newbase>]
  2. [<upstream>] [<branch>]
  3. git rebase [-i | --interactive] [options] [--exec <cmd>] [--onto <newbase>]
  4. --root [<branch>]
  5. git rebase --continue | --skip | --abort | --edit-todo
  6.  
  7. If <branch> is specified, git rebase will perform an automatic git
  8. checkout <branch> before doing anything else. Otherwise it remains on
  9. the current branch.
  10.  
  11. If <upstream> is not specified, the upstream configured in
  12. branch.<name>.remote and branch.<name>.merge options will be used; see
  13. git-config(1) for details. If you are currently not on any branch or if
  14. the current branch does not have a configured upstream, the rebase will
  15. abort.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement