blob: 81bb231d3fa3a856ad992e297c0f5dee02098981 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
git-branch-list
===============
A Git add-on that allows you to maintain a list of branches to check out
quickly. Branches can be added and removed from the list, and checked out using
their ID. This makes it easier to switch between a group of active branches for
development and code review tasks by eliminating the need to remember branch
names.
## Example
$ git branch
3254-make-logo-bigger
* 3901-eliminate-CombinationService
4011-catalog--populate-drop-down-via-AJAX
master
$ git branch-list save
$ git branch-list
1 3901-eliminate-CombinationService
$ git branch-list save 3254-make-logo-bigger
$ git branch-list
1 3254-make-logo-bigger
2 3901-eliminate-CombinationService
$ git checkout 4011-catalog--populate-drop-down-via-AJAX
Switched to branch '4011-catalog--populate-drop-down-via-AJAX'
$ git branch-list save
$ git branch-list
1 4011-catalog--populate-drop-down-via-AJAX
2 3254-make-logo-bigger
3 3901-eliminate-CombinationService
$ git branch-list 3
Switched to branch '3901-eliminate-CombinationService'
$ git branch-list drop 3
$ git branch-list
1 4011-catalog--populate-drop-down-via-AJAX
2 3254-make-logo-bigger
## Install
Mac OS X users can install with Homebrew:
$ brew install teddywing/formulae/git-branch-list
On other platforms, grab the code and put the `git-branch-list` script in your
`PATH`. Bash completion can be added by sourcing the
`git-branch-list.bash-completion` file in your Bash profile.
## License
Copyright © 2018–2020 Teddy Wing. Licensed under the GNU GPLv3+ (see the
included COPYING file).
|