Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add last checkouts to tabcompletion #641

Open
wants to merge 4 commits into
base: master
Choose a base branch
from

Commits on Nov 4, 2018

  1. Add last checkouts for 'git checkout' TabCompletion.

    This adds functionality to suggest last used branches (and commits) when
    tab completing "git checkout" command. This is inspired by "@{-N}" syntax that
    you can use use now in git (for example "git checkout @{-1}" switch to last used
    branch.
    mpawelski committed Nov 4, 2018
    Configuration menu
    Copy the full SHA
    a46724d View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    007f138 View commit details
    Browse the repository at this point in the history

Commits on Nov 23, 2018

  1. Configuration menu
    Copy the full SHA
    a19eed9 View commit details
    Browse the repository at this point in the history
  2. Fix quoting that broke unit test.

    We got this message from git when we ran git log command:
    "fatal: ambiguous argument 'moving': unknown revision or path not in the working tree.
    Use '--' to separate paths from revisions, like this:
    'git <command> [<revision>...] -- [<file>...]'"
    
    This change in quoting fixes it.
    mpawelski committed Nov 23, 2018
    Configuration menu
    Copy the full SHA
    66b06fd View commit details
    Browse the repository at this point in the history