Skip to content
  • yohoho hahhahah's avatar
    builtin rebase: support --continue · f9573628
    yohoho hahhahah authored and Junio C Hamano's avatar Junio C Hamano committed
    
    
    This commit adds the option `--continue` which is used to resume
    rebase after merge conflicts. The code tries to stay as close to
    the equivalent shell scripts found in `git-legacy-rebase.sh` as
    possible.
    
    When continuing a rebase, the state variables are read from state_dir.
    Some of the state variables are not actually stored there, such as
    `upstream`. The shell script version simply does not set them, but for
    consistency, we unset them in the builtin version.
    
    Signed-off-by: default avatarPratik Karki <predatoramigo@gmail.com>
    Signed-off-by: default avatarJunio C Hamano <gitster@pobox.com>
    f9573628