git-multi 1.0.1 → 1.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/git/multi/version.rb +11 -6
- data/lib/git/multi.rb +1 -1
- metadata +8 -10
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: be442e1218245c5f96d38cd0c046774417fd336af6c644a5322d873763f341b4
|
|
4
|
+
data.tar.gz: 8bcdb2fd482ffad4497989c12e2dc273977f24ba9fe1f0809713f83a15a3e545
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 394a92a4649a3468c6fe36ea2d2d4128b3297c724196df0f5d3322373ba53c7a159e860dedcf4c9b9ef6947ac9d843176788ad2c007ed8dad021a90c1805e737
|
|
7
|
+
data.tar.gz: 27d6e8aced92a3ea3a68d4702fa8a8f2ed5137f8e910bcd5a9f416a985a43b48024484ee453c92326939efccecda524d7f01cb5277f81c213998f016f906a18f
|
data/lib/git/multi/version.rb
CHANGED
|
@@ -5,7 +5,7 @@ require 'psych'
|
|
|
5
5
|
module Git
|
|
6
6
|
module Multi
|
|
7
7
|
NAME = 'git-multi'
|
|
8
|
-
VERSION = '1.0.
|
|
8
|
+
VERSION = '1.0.2'
|
|
9
9
|
|
|
10
10
|
LONG_VERSION = "%s v%s (%s v%s, %s v%s, %s v%s)" % [
|
|
11
11
|
NAME,
|
|
@@ -20,12 +20,17 @@ module Git
|
|
|
20
20
|
|
|
21
21
|
PIM = <<~"EOPIM" # gem post_install_message
|
|
22
22
|
|
|
23
|
-
The required settings are as follows:
|
|
23
|
+
The required settings for \033[1mgit multi\33[0m are as follows:
|
|
24
24
|
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
25
|
+
\tgit config --global --add \033[1mgithub.user\033[0m <your_github_username>
|
|
26
|
+
\tgit config --global --add \033[1mgithub.organizations\033[0m <your_github_orgs>
|
|
27
|
+
\tgit config --global --add \033[1mgithub.token\033[0m <your_github_oauth_token>
|
|
28
|
+
|
|
29
|
+
Unless your top-level workarea is `${HOME}/Workarea` you should also set:
|
|
30
|
+
|
|
31
|
+
\tgit config --global --add \033[1mgit.multi.workarea\033[0m <your_root_workarea>
|
|
32
|
+
|
|
33
|
+
Thanks for using \033[1mgit multi\033[0m ... the ultimate multi-repo utility for git!
|
|
29
34
|
|
|
30
35
|
EOPIM
|
|
31
36
|
end
|
data/lib/git/multi.rb
CHANGED
|
@@ -26,7 +26,7 @@ module Git
|
|
|
26
26
|
HOME = Dir.home
|
|
27
27
|
|
|
28
28
|
DEFAULT_WORKAREA = File.join(HOME, 'Workarea')
|
|
29
|
-
WORKAREA = git_option('
|
|
29
|
+
WORKAREA = git_option('git.multi.workarea', DEFAULT_WORKAREA)
|
|
30
30
|
|
|
31
31
|
DEFAULT_TOKEN = env_var('OCTOKIT_ACCESS_TOKEN') # same as Octokit
|
|
32
32
|
TOKEN = git_option('github.token', DEFAULT_TOKEN)
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: git-multi
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Peter Vandenberk
|
|
@@ -105,15 +105,13 @@ homepage: https://github.com/pvdb/git-multi
|
|
|
105
105
|
licenses:
|
|
106
106
|
- MIT
|
|
107
107
|
metadata: {}
|
|
108
|
-
post_install_message:
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
git config --global --add gitmulti.workarea <your_root_workarea>
|
|
116
|
-
|
|
108
|
+
post_install_message: "\nThe required settings for \e[1mgit multi\e[0m are as follows:\n\n\tgit
|
|
109
|
+
config --global --add \e[1mgithub.user\e[0m <your_github_username>\n\tgit config
|
|
110
|
+
--global --add \e[1mgithub.organizations\e[0m <your_github_orgs>\n\tgit config --global
|
|
111
|
+
--add \e[1mgithub.token\e[0m <your_github_oauth_token>\n\nUnless your top-level
|
|
112
|
+
workarea is `${HOME}/Workarea` you should also set:\n\n\tgit config --global --add
|
|
113
|
+
\e[1mgit.multi.workarea\e[0m <your_root_workarea>\n\nThanks for using \e[1mgit multi\e[0m
|
|
114
|
+
... the ultimate multi-repo utility for git!\n\n"
|
|
117
115
|
rdoc_options: []
|
|
118
116
|
require_paths:
|
|
119
117
|
- lib
|