Skip to content

v0.8.2

Compare
Choose a tag to compare
@pedrocunha pedrocunha released this 17 Dec 09:58
· 109 commits to master since this release
Improvements
  • git latest-pushes now allows partial matching. Before this was relying on "pattern" flag for git for-each-ref however which only allowed matching branch names between slashes.

    Eg.:
    Assuming a remote branch name called: refs/remotes/origin/foo-branch/

    git latest-pushes -p foo # no match
    git latest-pushes -p foo-branch # matches

    This now keeps the same API as before (-p pattern) but allows partial matching so -p foo and -f foo-branch both yield the same results for the previous scenario

Bugfixes
  • Fixes the regexp on git outstanding-features that was chopping branches that contained the word "from".