github_branch_list 0.6.2 → 0.6.3
Sign up to get free protection for your applications and to get access to all the features.
- data/README.rdoc +8 -16
- data/VERSION +1 -1
- data/bin/github_branch_list +2 -2
- metadata +4 -4
data/README.rdoc
CHANGED
@@ -1,19 +1,11 @@
|
|
1
1
|
= github_branch_list
|
2
2
|
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
* Commit and push until you are happy with your contribution
|
12
|
-
* Make sure to add tests for it. This is important so I don't break it in a future version unintentionally.
|
13
|
-
* Please try not to mess with the Rakefile, version, or history. If you want to have your own version, or is otherwise necessary, that is fine, but please isolate to its own commit so I can cherry-pick around it.
|
14
|
-
|
15
|
-
== Copyright
|
16
|
-
|
17
|
-
Copyright (c) 2011 Caccinolo Benoit. See LICENSE.txt for
|
18
|
-
further details.
|
3
|
+
github_branch_list -h
|
4
|
+
|
5
|
+
Usage: github_branch_list [options]
|
6
|
+
-d, --to-delete Only display branches to delete
|
7
|
+
-D, --to-delete-with-proposal Display branches to delete and propose to remove them one by one
|
8
|
+
-L, --just-local Only treat local branches
|
9
|
+
-R, --just-remote Only treat remote branches
|
10
|
+
-v, --version Version
|
19
11
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.6.
|
1
|
+
0.6.3
|
data/bin/github_branch_list
CHANGED
@@ -105,13 +105,13 @@ def diff_all_branhces_with_master options
|
|
105
105
|
end
|
106
106
|
end
|
107
107
|
|
108
|
+
options[:just_remote_branches] = false
|
108
109
|
if options[:just_local_branches]
|
109
110
|
`git fetch origin`
|
110
|
-
options[:remote] = false
|
111
111
|
title_block "LOCAL BRANCHES"
|
112
112
|
branches = remote_branches(false)
|
113
113
|
branches.each do |br|
|
114
|
-
diff_branches "
|
114
|
+
diff_branches "master", br, options
|
115
115
|
end
|
116
116
|
end
|
117
117
|
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: github_branch_list
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 1
|
5
5
|
prerelease:
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 6
|
9
|
-
-
|
10
|
-
version: 0.6.
|
9
|
+
- 3
|
10
|
+
version: 0.6.3
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Caccinolo Benoit
|
@@ -15,7 +15,7 @@ autorequire:
|
|
15
15
|
bindir: bin
|
16
16
|
cert_chain: []
|
17
17
|
|
18
|
-
date: 2011-
|
18
|
+
date: 2011-09-01 00:00:00 Z
|
19
19
|
dependencies:
|
20
20
|
- !ruby/object:Gem::Dependency
|
21
21
|
prerelease: false
|