KEMBAR78
Comparing 89d1b573d7...f3f8311ec7 · git/git · GitHub
Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: git/git
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 89d1b573d7
Choose a base ref
...
head repository: git/git
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: f3f8311ec7
Choose a head ref
  • 2 commits
  • 5 files changed
  • 1 contributor

Commits on May 13, 2019

  1. merge: remove drop_save() in favor of remove_merge_branch_state()

    Both remove_branch_state() and drop_save() delete almost the same set of
    files about the current merge state. The only difference is MERGE_RR but
    it should also be cleaned up after a successful merge, which is what
    drop_save() is for.
    
    Make a new function that deletes all merge-related state files and use
    it instead of drop_save(). This function will also be used in the next
    patch that introduces --quit.
    
    Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com>
    Signed-off-by: Junio C Hamano <gitster@pobox.com>
    pclouds authored and gitster committed May 13, 2019
    Configuration menu
    Copy the full SHA
    b643355 View commit details
    Browse the repository at this point in the history

Commits on May 19, 2019

  1. merge: add --quit

    This allows to cancel the current merge without resetting worktree/index,
    which is what --abort is for. Like other --quit(s), this is often used
    when you forgot that you're in the middle of a merge and already
    switched away, doing different things. By the time you've realized, you
    can't even continue the merge anymore.
    
    This also makes all in-progress commands, am, merge, rebase, revert and
    cherry-pick, take all three --abort, --continue and --quit (bisect has a
    different UI).
    
    Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com>
    Signed-off-by: Junio C Hamano <gitster@pobox.com>
    pclouds authored and gitster committed May 19, 2019
    Configuration menu
    Copy the full SHA
    f3f8311 View commit details
    Browse the repository at this point in the history
Loading