5

Должен ли 'git rebase' принимать хотя бы один аргумент? Что это значит только с «git rebase»?

1 ответ1

6

Взято из справочной страницы (git help rebase):

   git rebase [-i | --interactive] [options] [--exec <cmd>] [--onto <newbase>]
           [<upstream>] [<branch>]
   git rebase [-i | --interactive] [options] [--exec <cmd>] [--onto <newbase>]
           --root [<branch>]
   git rebase --continue | --skip | --abort | --edit-todo

   If <branch> is specified, git rebase will perform an automatic git
   checkout <branch> before doing anything else. Otherwise it remains on
   the current branch.

   If <upstream> is not specified, the upstream configured in
   branch.<name>.remote and branch.<name>.merge options will be used; see
   git-config(1) for details. If you are currently not on any branch or if
   the current branch does not have a configured upstream, the rebase will
   abort.

Это означает , что git rebase один, по умолчанию git rebase branch.<name>.remote branch.<name> до тех пор, пока уже существует настроенная вверх для этой отрасли. -. В противном случае она ликвидирует.

Если вы дадите ему только один аргумент, это будет имя вышестоящей ветки, в то время как вы останетесь в той же ветке, что и вы.

Всё ещё ищете ответ? Посмотрите другие вопросы с метками .