packages feed

git-brunch 1.4.0.0 → 1.4.1.0

raw patch · 3 files changed

+18/−6 lines, 3 files

Files

README.md view
@@ -1,9 +1,17 @@ # git-brunch [![Travis](https://travis-ci.org/andys8/git-brunch.svg?branch=master)](https://travis-ci.org/andys8/git-brunch) ![Actions](https://github.com/andys8/git-brunch/workflows/CI/badge.svg) -A git checkout and rebase command-line tool+A git branch checkout command-line tool  ![screenshot](https://raw.githubusercontent.com/andys8/git-brunch/master/screenshot.png) +## Features++- Checkout local or remote branch+- Rebase onto a branch+- Search for a branch+- Delete a branch+- Fetch / Update+ ## Usage  Run `git-brunch` or `git brunch`.@@ -89,7 +97,9 @@ ## Release  - Bump version in `package.yaml` and `default.nix`-- Create a tag `v0.0.0` locally and push it+- Create a commit `v0.0.0`+- Create a tag `v0.0.0`+- Push commit and push tag - Release on github will be created by CI - Update release description - `stack upload .`
app/GitBrunch.hs view
@@ -117,7 +117,9 @@  where   padding = str " "   maxWidth w = C.hCenter . hLimit w-  toBranchList r lens' = state ^. lens' & drawBranchList (state ^. focusL == r)+  toBranchList r lens' =+    let isActive = state ^. focusL == r && not (_isEditingFilter state)+    in  state ^. lens' & drawBranchList isActive   filterEdit  = if _isEditingFilter state then drawFilter state else emptyWidget   branchLists = hBox     [ C.hCenter $ toBranchList RLocal localBranchesL
git-brunch.cabal view
@@ -1,13 +1,13 @@ cabal-version: 1.12 --- This file has been generated from package.yaml by hpack version 0.31.2.+-- This file has been generated from package.yaml by hpack version 0.33.0. -- -- see: https://github.com/sol/hpack ----- hash: 9068dd582fd66de4b8c0c3a49502d99cf46bfe110966c54ce4d8fd398c238146+-- hash: 371122b89d6b4ccfc16cbaff0aff2cf54b1abe0027417524c1f93003f7a1f40c  name:           git-brunch-version:        1.4.0.0+version:        1.4.1.0 synopsis:       git checkout command-line tool description:    Please see the README on GitHub at <https://github.com/andys8/git-brunch> category:       Git