r-git 1.0.0 → 1.0.1
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/README.md +7 -0
- data/lib/rgit/version.rb +1 -1
- data/r-git.gemspec +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8dfda05c99ffdd37e680d7a6848e87c9019dce72
|
4
|
+
data.tar.gz: 318684d5dcad6633e7a5ebf302f0ed7c26a33fbf
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 331aca1709cdf8adf4472b0fe9993934a6dc966415b83225fb93cdac3d528a80df4da393ade4b80e8d9ea71268a1d6862e59b72e4acf7651ed2d17a0a1ce2a09
|
7
|
+
data.tar.gz: e40a0e8a880ec4aa4022a7a25241b63474c05e3b7ba9cc84b2174acc09f00dfa7f3f757272a6d9908a9f364c462b6c25d3d74ed1cfe6a118ee9ce20c7c5809ec
|
data/README.md
CHANGED
@@ -25,12 +25,19 @@ r-git has the concepts of 'roots' in our scenario `personal-projects` and `work-
|
|
25
25
|
Running any of the following commands will result in that command being executed across all projects within the root:
|
26
26
|
|
27
27
|
* `rgit -s`
|
28
|
+
|
28
29
|
Status of all repositories
|
30
|
+
|
29
31
|
* `rgit -p`
|
32
|
+
|
30
33
|
Execute git pull on all repositories
|
34
|
+
|
31
35
|
* `rgit -f`
|
36
|
+
|
32
37
|
Execute git fetch on all repositories
|
38
|
+
|
33
39
|
* `rgit -c development`
|
40
|
+
|
34
41
|
Execute `git checkout development` on all repositories
|
35
42
|
|
36
43
|
For example: executing `rgit -f` from within any folder in `personal-projects` will run git fetch on all repositories in that folder/root.
|
data/lib/rgit/version.rb
CHANGED
data/r-git.gemspec
CHANGED
@@ -13,7 +13,7 @@ Gem::Specification.new do |spec|
|
|
13
13
|
spec.description = 'Executable gem for managing multiple git repositories in a top level directory. rgit-git allow
|
14
14
|
you to easily fetch, pull, change branch, etc. across multiple git repositories with a single
|
15
15
|
command.'
|
16
|
-
spec.homepage = '
|
16
|
+
spec.homepage = 'https://github.com/jamesridgway/r-git'
|
17
17
|
spec.license = 'MIT'
|
18
18
|
|
19
19
|
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: r-git
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- James Ridgway
|
@@ -135,7 +135,7 @@ files:
|
|
135
135
|
- lib/rgit/rgit.rb
|
136
136
|
- lib/rgit/version.rb
|
137
137
|
- r-git.gemspec
|
138
|
-
homepage:
|
138
|
+
homepage: https://github.com/jamesridgway/r-git
|
139
139
|
licenses:
|
140
140
|
- MIT
|
141
141
|
metadata: {}
|