git-multirepo 1.0.0.beta40 → 1.0.0.beta42

Sign up to get free protection for your applications and to get access to all the features.
Files changed (67) hide show
  1. checksums.yaml +4 -4
  2. data/.gitattributes +2 -2
  3. data/.gitbugtraq +3 -3
  4. data/.gitignore +38 -38
  5. data/.multirepo.meta +2 -2
  6. data/.rspec +2 -2
  7. data/Gemfile +4 -4
  8. data/Gemfile.lock +42 -42
  9. data/LICENSE +22 -22
  10. data/README.md +143 -146
  11. data/Rakefile +2 -2
  12. data/bin/multi +10 -10
  13. data/docs/bug-repros/91565510-repro.sh +20 -20
  14. data/docs/git-multirepo-cheatsheet.docx +0 -0
  15. data/git-multirepo.gemspec +31 -31
  16. data/lib/commands.rb +13 -15
  17. data/lib/git-multirepo.rb +2 -2
  18. data/lib/info.rb +4 -4
  19. data/lib/multirepo/commands/add-command.rb +50 -53
  20. data/lib/multirepo/commands/branch-command.rb +81 -82
  21. data/lib/multirepo/commands/checkout-command.rb +119 -122
  22. data/lib/multirepo/commands/clone-command.rb +67 -70
  23. data/lib/multirepo/commands/command.rb +89 -75
  24. data/lib/multirepo/commands/do-command.rb +100 -75
  25. data/lib/multirepo/commands/graph-command.rb +42 -45
  26. data/lib/multirepo/commands/init-command.rb +119 -119
  27. data/lib/multirepo/commands/install-command.rb +106 -103
  28. data/lib/multirepo/commands/merge-command.rb +225 -167
  29. data/lib/multirepo/commands/open-command.rb +55 -57
  30. data/lib/multirepo/commands/remove-command.rb +47 -50
  31. data/lib/multirepo/commands/uninit-command.rb +17 -20
  32. data/lib/multirepo/commands/update-command.rb +55 -60
  33. data/lib/multirepo/config.rb +15 -15
  34. data/lib/multirepo/files/config-entry.rb +38 -38
  35. data/lib/multirepo/files/config-file.rb +45 -45
  36. data/lib/multirepo/files/lock-entry.rb +28 -24
  37. data/lib/multirepo/files/lock-file.rb +55 -38
  38. data/lib/multirepo/files/meta-file.rb +40 -40
  39. data/lib/multirepo/files/tracking-file.rb +8 -8
  40. data/lib/multirepo/files/tracking-files.rb +46 -46
  41. data/lib/multirepo/git/branch.rb +31 -30
  42. data/lib/multirepo/git/change.rb +10 -10
  43. data/lib/multirepo/git/commit.rb +6 -17
  44. data/lib/multirepo/git/git-runner.rb +46 -46
  45. data/lib/multirepo/git/git.rb +10 -0
  46. data/lib/multirepo/git/ref.rb +38 -0
  47. data/lib/multirepo/git/remote.rb +16 -16
  48. data/lib/multirepo/git/repo.rb +122 -77
  49. data/lib/multirepo/hooks/post-commit-hook.rb +22 -22
  50. data/lib/multirepo/hooks/pre-commit-hook.rb +34 -31
  51. data/lib/multirepo/logic/dependency.rb +6 -0
  52. data/lib/multirepo/logic/merge-descriptor.rb +94 -12
  53. data/lib/multirepo/logic/node.rb +71 -44
  54. data/lib/multirepo/logic/performer.rb +56 -62
  55. data/lib/multirepo/logic/revision-selector.rb +34 -34
  56. data/lib/multirepo/multirepo-exception.rb +5 -5
  57. data/lib/multirepo/utility/console.rb +51 -51
  58. data/lib/multirepo/utility/runner.rb +34 -34
  59. data/lib/multirepo/utility/utils.rb +94 -81
  60. data/resources/.gitconfig +2 -2
  61. data/resources/post-commit +5 -5
  62. data/resources/pre-commit +5 -5
  63. data/spec/integration/init_spec.rb +18 -18
  64. data/spec/spec_helper.rb +89 -89
  65. metadata +6 -5
  66. data/lib/multirepo/commands/clean-command.rb +0 -32
  67. data/lib/multirepo/commands/fetch-command.rb +0 -31
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 3b0b0bc2ac0356c0f1f6098fc4e3ee8ed404ce66
4
- data.tar.gz: ab908b01fef11f7d65760f2808e82b5afd80f345
3
+ metadata.gz: fd7f1d4e1995f15408d239477ca16d7ef62608fb
4
+ data.tar.gz: cf3b6b7c36f777845a4e215963a32d067536f87b
5
5
  SHA512:
6
- metadata.gz: f2121ae7343b512ac79e729fe53a31d90a5c368a1158901fc492c8209e7c56b247eda33f38949a8458cfe7daeba288304ec9bb118b04bb9fcf1d48523fce785a
7
- data.tar.gz: c41bcc3a4f1a7cf96442d0462bf310b9ae2326cbbffdfd963acec3597bcc0eccedfa987311b4ddec23fdb4d3218ebe4510bb74cc0a8c33dc8042b2a1b434029b
6
+ metadata.gz: e2ce727bc7ee86b816767521ed0d25c10ec03cdc997dfc6592edd0d7e3c3b6c8767e85136f525a0f5b2c4f96636227a2cfbaab8f0239e8ce6f5d03ea9ad6ea56
7
+ data.tar.gz: 15654ca43fafd8765ae414bbc125c0faddde1bad2d0cadf3a82b7f9770541bba5d2a001224e14b6e170bc3c98f05f986de4786405a5cd467dc874f1829b73ad2
data/.gitattributes CHANGED
@@ -1,2 +1,2 @@
1
- .multirepo.lock merge=ours
2
- .multirepo.meta merge=ours
1
+ .multirepo.lock merge=ours
2
+ .multirepo.meta merge=ours
data/.gitbugtraq CHANGED
@@ -1,3 +1,3 @@
1
- [bugtraq "pivotal"]
2
- url = https://www.pivotaltracker.com/story/show/%BUGID%
3
- logRegex = (\\b\\d{8}\\b)
1
+ [bugtraq "pivotal"]
2
+ url = https://www.pivotaltracker.com/story/show/%BUGID%
3
+ logRegex = (\\b\\d{8}\\b)
data/.gitignore CHANGED
@@ -1,38 +1,38 @@
1
- *.gem
2
- *.rbc
3
- /.config
4
- /coverage/
5
- /InstalledFiles
6
- /pkg/
7
- /spec/reports/
8
- /test/tmp/
9
- /test/version_tmp/
10
- /tmp/
11
-
12
- ## Specific to RubyMotion:
13
- .dat*
14
- .repl_history
15
- build/
16
-
17
- ## Documentation cache and generated files:
18
- /.yardoc/
19
- /_yardoc/
20
- /doc/
21
- /rdoc/
22
-
23
- ## Environment normalisation:
24
- /.bundle/
25
- /lib/bundler/man/
26
-
27
- # for a library or gem, you might want to ignore these files since the code is
28
- # intended to run in multiple environments; otherwise, check them in:
29
- # Gemfile.lock
30
- # .ruby-version
31
- # .ruby-gemset
32
-
33
- # unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
34
- .rvmrc
35
-
36
- # Project-specific
37
- /.multirepo
38
- /.multirepo.lock
1
+ *.gem
2
+ *.rbc
3
+ /.config
4
+ /coverage/
5
+ /InstalledFiles
6
+ /pkg/
7
+ /spec/reports/
8
+ /test/tmp/
9
+ /test/version_tmp/
10
+ /tmp/
11
+
12
+ ## Specific to RubyMotion:
13
+ .dat*
14
+ .repl_history
15
+ build/
16
+
17
+ ## Documentation cache and generated files:
18
+ /.yardoc/
19
+ /_yardoc/
20
+ /doc/
21
+ /rdoc/
22
+
23
+ ## Environment normalisation:
24
+ /.bundle/
25
+ /lib/bundler/man/
26
+
27
+ # for a library or gem, you might want to ignore these files since the code is
28
+ # intended to run in multiple environments; otherwise, check them in:
29
+ # Gemfile.lock
30
+ # .ruby-version
31
+ # .ruby-gemset
32
+
33
+ # unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
34
+ .rvmrc
35
+
36
+ # Project-specific
37
+ /.multirepo
38
+ /.multirepo.lock
data/.multirepo.meta CHANGED
@@ -1,2 +1,2 @@
1
- --- !ruby/object:MultiRepo::MetaFile
2
- version: 1.0.0.beta39
1
+ --- !ruby/object:MultiRepo::MetaFile
2
+ version: 1.0.0.beta42
data/.rspec CHANGED
@@ -1,2 +1,2 @@
1
- --color
2
- --require spec_helper
1
+ --color
2
+ --require spec_helper
data/Gemfile CHANGED
@@ -1,4 +1,4 @@
1
- source 'https://rubygems.org'
2
-
3
- # Specify your gem's dependencies in git-multirepo.gemspec
4
- gemspec
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in git-multirepo.gemspec
4
+ gemspec
data/Gemfile.lock CHANGED
@@ -1,42 +1,42 @@
1
- PATH
2
- remote: .
3
- specs:
4
- git-multirepo (1.0.0.beta38)
5
- claide (~> 0.8, >= 0.8.0)
6
- colored (~> 1.2)
7
- os (~> 0.9.6)
8
- ruby-graphviz (~> 1.2.1)
9
- terminal-table (~> 1.4.5)
10
-
11
- GEM
12
- remote: https://rubygems.org/
13
- specs:
14
- claide (0.8.1)
15
- colored (1.2)
16
- diff-lcs (1.2.5)
17
- os (0.9.6)
18
- rake (10.4.2)
19
- rspec (3.1.0)
20
- rspec-core (~> 3.1.0)
21
- rspec-expectations (~> 3.1.0)
22
- rspec-mocks (~> 3.1.0)
23
- rspec-core (3.1.7)
24
- rspec-support (~> 3.1.0)
25
- rspec-expectations (3.1.2)
26
- diff-lcs (>= 1.2.0, < 2.0)
27
- rspec-support (~> 3.1.0)
28
- rspec-mocks (3.1.3)
29
- rspec-support (~> 3.1.0)
30
- rspec-support (3.1.2)
31
- ruby-graphviz (1.2.2)
32
- terminal-table (1.4.5)
33
-
34
- PLATFORMS
35
- ruby
36
- x64-mingw32
37
-
38
- DEPENDENCIES
39
- bundler (~> 1.7)
40
- git-multirepo!
41
- rake (~> 10.0)
42
- rspec (~> 3.1.0)
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ git-multirepo (1.0.0.beta38)
5
+ claide (~> 0.8, >= 0.8.0)
6
+ colored (~> 1.2)
7
+ os (~> 0.9.6)
8
+ ruby-graphviz (~> 1.2.1)
9
+ terminal-table (~> 1.4.5)
10
+
11
+ GEM
12
+ remote: https://rubygems.org/
13
+ specs:
14
+ claide (0.8.1)
15
+ colored (1.2)
16
+ diff-lcs (1.2.5)
17
+ os (0.9.6)
18
+ rake (10.4.2)
19
+ rspec (3.1.0)
20
+ rspec-core (~> 3.1.0)
21
+ rspec-expectations (~> 3.1.0)
22
+ rspec-mocks (~> 3.1.0)
23
+ rspec-core (3.1.7)
24
+ rspec-support (~> 3.1.0)
25
+ rspec-expectations (3.1.2)
26
+ diff-lcs (>= 1.2.0, < 2.0)
27
+ rspec-support (~> 3.1.0)
28
+ rspec-mocks (3.1.3)
29
+ rspec-support (~> 3.1.0)
30
+ rspec-support (3.1.2)
31
+ ruby-graphviz (1.2.2)
32
+ terminal-table (1.4.5)
33
+
34
+ PLATFORMS
35
+ ruby
36
+ x64-mingw32
37
+
38
+ DEPENDENCIES
39
+ bundler (~> 1.7)
40
+ git-multirepo!
41
+ rake (~> 10.0)
42
+ rspec (~> 3.1.0)
data/LICENSE CHANGED
@@ -1,22 +1,22 @@
1
- The MIT License (MIT)
2
-
3
- Copyright (c) 2015 Michaël Fortin
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining a copy
6
- of this software and associated documentation files (the "Software"), to deal
7
- in the Software without restriction, including without limitation the rights
8
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- copies of the Software, and to permit persons to whom the Software is
10
- furnished to do so, subject to the following conditions:
11
-
12
- The above copyright notice and this permission notice shall be included in all
13
- copies or substantial portions of the Software.
14
-
15
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
- SOFTWARE.
22
-
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2015 Michaël Fortin
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
22
+
data/README.md CHANGED
@@ -1,147 +1,144 @@
1
- # git-multirepo
2
-
3
- [![Gem Version](https://badge.fury.io/rb/git-multirepo.svg)](http://badge.fury.io/rb/git-multirepo)
4
- [![Code Climate](https://codeclimate.com/github/fortinmike/git-multirepo/badges/gpa.svg)](https://codeclimate.com/github/fortinmike/git-multirepo)
5
- [![License](http://img.shields.io/:license-mit-blue.svg)](https://github.com/fortinmike/git-multirepo/blob/master/LICENSE)
6
-
7
- Track multiple Git repositories side-by-side.
8
-
9
- An alternative approach to manage constantly evolving dependencies.
10
-
11
- Check out [the project's to-do list](https://www.pivotaltracker.com/n/projects/1256156) to get an idea of upcoming enhancements.
12
-
13
- You can download a handy cheat sheet [here](https://github.com/fortinmike/git-multirepo/raw/master/docs/git-multirepo-cheatsheet.docx).
14
-
15
- ## Motivation
16
-
17
- By now the
18
- [pitfalls](http://somethingsinistral.net/blog/git-submodules-are-probably-not-the-answer/)
19
- of git submodules are
20
- [pretty](https://codingkilledthecat.wordpress.com/2012/04/28/why-your-company-shouldnt-use-git-submodules/)
21
- [well](http://slopjong.de/2013/06/04/git-why-submodules-are-evil/)
22
- [known](http://stackoverflow.com/questions/12075809/git-submodules-workflow-issues).
23
- They work when your dependencies are linearly-evolving third-party libraries that you seldom update but they fall apart when it comes to managing your own, constantly evolving dependencies.
24
-
25
- Git subtrees are the recommended alternative but have pitfalls of their own:
26
-
27
- - They require verbose and error-prone command-line operations. This can become quite tedious when managing more than one or two dependencies.
28
- - They change the rules of the game when it comes to merges.
29
- - Each developer has to configure the appropriate remotes and subtrees on his machine if he or she wants to contribute back.
30
- - Developers must not forget to push changes to dependencies back to the appropriate remotes.
31
- - Few git GUIs have any kind of subtree integration, so you're stuck with the command-line.
32
-
33
- Etc.
34
-
35
- ## Overview
36
-
37
- Using git-multirepo, you can manage your main project and its dependencies as completely independent repositories while still maintaining the ability to checkout a previous revision in a single step and have the project build properly.
38
-
39
- A git-multirepo setup looks like this:
40
-
41
- ```
42
- MyAwesomeProject
43
- |-- AwesomeApp
44
- |-- Dependency1
45
- |-- Dependency2
46
- ```
47
-
48
- In essence:
49
-
50
- 1. You tell git-multirepo what your dependencies are.
51
- 2. Each time you commit the main repo, git-multirepo tracks what revision of each dependency is required by the project (don't worry, it ensures that you don't forget to commit changes to dependencies beforehand; more on that later).
52
- 3. If you ever want to go back to a previous version of your project, git-multirepo handles checking out the main repo and appropriate revisions of all of its dependencies in a single, seamless operation.
53
- 4. Setting up the project on a new machine is only a single `multi clone` away.
54
-
55
- ## Example
56
-
57
- Say you want to track an existing project with git-multirepo:
58
-
59
- 1. Organize repos on disk in the following manner:
60
-
61
- ```
62
- MyAwesomeProject
63
- |-- AwesomeApp
64
- |-- Dependency1
65
- |-- Dependency2
66
- ```
67
-
68
- 2. `cd` into the *AwesomeApp* directory (aka the "main repo").
69
- 3. Run `multi init`.
70
- 4. You will get prompted to add *Dependency1* and *Dependency2* to multirepo; do so.
71
- 5. git-multirepo reads all required information from dependency repos and initializes itself, storing its metadata in the main repo, under version control.
72
-
73
- From now on, each time you commit the main repo git-multirepo tracks &mdash; using local git hooks &mdash; which revision of each dependency is required for that main repo revision, and where to get them. The hooks also ensure that you won't commit the main repo before its dependencies so that you always get a valid state stored under version control.
74
-
75
- If you want to add another dependency later on, you can run `multi add ../NewDependency` and you can do the opposite with `multi remove ../SomeOtherDependency`.
76
-
77
- If you want to checkout a previous revision (say `e690d`), you use the checkout command: `multi checkout e690d`. This will checkout the main repo's `e690d` revision and all of its dependencies with the proper revisions in detached HEAD state.
78
-
79
- If you want to setup your project on another machine, simply run `multi clone` with the appropriate parameters. This will clone the project and each of its dependencies, then checkout the appropriate work branches.
80
-
81
- If you want to stop using git-multirepo, run `multi uninit`. This will remove all traces of git-multirepo from your repository and working copy, including local git hooks.
82
-
83
- ## Advantages
84
-
85
- - Makes setting up a project on a new machine a breeze.
86
- - Really effective when working on multiple projects that share a common set of constantly evolving dependencies.
87
- - Each dependency's repository is totally independent from the main repository, which simplifies a lot of things (merges, contributing upstream, etc.) and works well with git GUIs.
88
- - While the repositories are independent, git-multirepo makes sure to track everything that's required to bring back a previous version of your project in a valid state.
89
- - It supports sub-dependencies (e.g. dependencies that have dependencies of their own) so that you can bring back any subset of your project in a valid state at will.
90
- - Much more approachable to novice developers than submodules or subtrees.
91
- - Once setup, there is little need for git-multirepo commands, so you are free to use whatever tools you like to work with your git repos.
92
- - Low possibility of human error (such as forgetting to contribute changes to dependencies back to the appropriate remotes, forgetting to commit dependencies in the proper order, etc.)
93
- - You're not stuck with git-multirepo. It stores its metadata as [YAML](http://www.yaml.org) in the main repo. You can clone and checkout appropriate revisions of your dependencies by hand without git-multirepo if you need to. The information is there, in human-readable form.
94
-
95
- | How It Handles... | git-multirepo | git submodules | git subtrees |
96
- |----------------------------------|:----------------:|:--------------:|:------------:|
97
- | Working Copy | beside main repo | in main repo | in main repo |
98
- | Constantly Evolving Dependencies | easy | hard | passable |
99
- | Merging Changes to Dependencies | easy | hard | passable |
100
- | Contributing Upstream | easy | easy | passable |
101
- | Continuous Integration | medium | medium | easy |
102
- | Complex Branch-Based Workflows | medium* | hard | easy |
103
-
104
- (*) Ongoing work should make this easier in future versions of git-multirepo.
105
-
106
- ## Limitations
107
-
108
- - git-multirepo should be considered beta at the moment. Suggestions and contributions are welcome.
109
- - The project and its dependencies must live beside each other on disk.
110
- - Some more commands need to be implemented to facilitate branch-heavy workflows.
111
- - You must (ideally) install the tool on your CI server: `gem install git-multirepo`
112
-
113
- ## Summary of Commands
114
-
115
- Here is a quick rundown of commands available to you in git-multirepo:
116
-
117
- | Command | Description |
118
- |---------|-------------|
119
- | init | Initialize the current repository as a multirepo project. |
120
- | add | Track an additional dependency with multirepo. |
121
- | branch | Create and/or checkout a new branch for all repos. |
122
- | checkout | Checks out the specified commit or branch of the main repo and checks out matching versions of all dependencies. |
123
- | clean | Performs a 'git clean -df' on the main repo and all dependencies. |
124
- | clone | Clones the specified repository in a subfolder, then installs it. |
125
- | do | Perform an arbitrary Git operation in the main repository, dependency repositories or all repositories. |
126
- | fetch | Performs a git fetch on all dependencies. |
127
- | graph | Graphs the dependency tree from the current repository. |
128
- | install | Clones and checks out dependencies as defined in the version-controlled multirepo metadata files and installs git-multirepo's local git hooks. |
129
- | merge | Performs a git merge on all dependencies and the main repo, in the proper order. |
130
- | open | Opens repositories in the OS's file explorer. |
131
- | remove | Removes the specified dependency from multirepo. |
132
- | update | Force-updates the multirepo tracking files. |
133
- | uninit | Removes all traces of multirepo in the current multirepo repository. |
134
-
135
- To read more about each command, use the `--help` flag (e.g. `$ multi clone --help`).
136
-
137
- ## Metadata
138
-
139
- git-multirepo stores all of its metadata in three files:
140
-
141
- | File | Format | Updated | Contents |
142
- |------|--------|---------|----------|
143
- | .multirepo | YAML | at initialization | A collection of your project's dependencies. For each dependency, stores its **local path** relative to the main repo and the **remote URL** your project depends upon.
144
- | .multirepo.lock | YAML | before each commit | For each dependency, stores the **commit hash** and **branch** on which the dependency was when the main repo was committed. The dependency's **name** is also included but only serves as a reference to make inspecting the lock file easier. |
145
- | .multirepo.meta | YAML | before each commit | Various git-multirepo metadata, such as the **git-multirepo version** that the last commit was performed with. |
146
-
1
+ # git-multirepo
2
+
3
+ [![Gem Version](https://badge.fury.io/rb/git-multirepo.svg)](http://badge.fury.io/rb/git-multirepo)
4
+ [![Code Climate](https://codeclimate.com/github/fortinmike/git-multirepo/badges/gpa.svg)](https://codeclimate.com/github/fortinmike/git-multirepo)
5
+ [![License](http://img.shields.io/:license-mit-blue.svg)](https://github.com/fortinmike/git-multirepo/blob/master/LICENSE)
6
+
7
+ Track multiple Git repositories side-by-side.
8
+
9
+ An alternative approach to manage constantly evolving dependencies.
10
+
11
+ Check out [the project's to-do list](https://www.pivotaltracker.com/n/projects/1256156) to get an idea of upcoming enhancements.
12
+
13
+ You can download a handy cheat sheet [here](https://github.com/fortinmike/git-multirepo/raw/master/docs/git-multirepo-cheatsheet.docx).
14
+
15
+ ## Motivation
16
+
17
+ By now the
18
+ [pitfalls](http://somethingsinistral.net/blog/git-submodules-are-probably-not-the-answer/)
19
+ of git submodules are
20
+ [pretty](https://codingkilledthecat.wordpress.com/2012/04/28/why-your-company-shouldnt-use-git-submodules/)
21
+ [well](http://slopjong.de/2013/06/04/git-why-submodules-are-evil/)
22
+ [known](http://stackoverflow.com/questions/12075809/git-submodules-workflow-issues).
23
+ They work when your dependencies are linearly-evolving third-party libraries that you seldom update but they fall apart when it comes to managing your own, constantly evolving dependencies.
24
+
25
+ Git subtrees are the recommended alternative but have pitfalls of their own:
26
+
27
+ - They require verbose and error-prone command-line operations. This can become quite tedious when managing more than one or two dependencies.
28
+ - They change the rules of the game when it comes to merges.
29
+ - Each developer has to configure the appropriate remotes and subtrees on his machine if he or she wants to contribute back.
30
+ - Developers must not forget to push changes to dependencies back to the appropriate remotes.
31
+ - Few git GUIs have any kind of subtree integration, so you're stuck with the command-line.
32
+
33
+ Etc.
34
+
35
+ ## Overview
36
+
37
+ Using git-multirepo, you can manage your main project and its dependencies as completely independent repositories while still maintaining the ability to checkout a previous revision in a single step and have the project build properly.
38
+
39
+ A git-multirepo setup looks like this:
40
+
41
+ ```
42
+ MyAwesomeProject
43
+ |-- AwesomeApp
44
+ |-- Dependency1
45
+ |-- Dependency2
46
+ ```
47
+
48
+ In essence:
49
+
50
+ 1. You tell git-multirepo what your dependencies are.
51
+ 2. Each time you commit the main repo, git-multirepo tracks what revision of each dependency is required by the project (don't worry, it ensures that you don't forget to commit changes to dependencies beforehand; more on that later).
52
+ 3. If you ever want to go back to a previous version of your project, git-multirepo handles checking out the main repo and appropriate revisions of all of its dependencies in a single, seamless operation.
53
+ 4. Setting up the project on a new machine is only a single `multi clone` away.
54
+
55
+ ## Example
56
+
57
+ Say you want to track an existing project with git-multirepo:
58
+
59
+ 1. Organize repos on disk in the following manner:
60
+
61
+ ```
62
+ MyAwesomeProject
63
+ |-- AwesomeApp
64
+ |-- Dependency1
65
+ |-- Dependency2
66
+ ```
67
+
68
+ 2. `cd` into the *AwesomeApp* directory (aka the "main repo").
69
+ 3. Run `multi init`.
70
+ 4. You will get prompted to add *Dependency1* and *Dependency2* to multirepo; do so.
71
+ 5. git-multirepo reads all required information from dependency repos and initializes itself, storing its metadata in the main repo, under version control.
72
+
73
+ From now on, each time you commit the main repo git-multirepo tracks &mdash; using local git hooks &mdash; which revision of each dependency is required for that main repo revision, and where to get them. The hooks also ensure that you won't commit the main repo before its dependencies so that you always get a valid state stored under version control.
74
+
75
+ If you want to add another dependency later on, you can run `multi add ../NewDependency` and you can do the opposite with `multi remove ../SomeOtherDependency`.
76
+
77
+ If you want to checkout a previous revision (say `e690d`), you use the checkout command: `multi checkout e690d`. This will checkout the main repo's `e690d` revision and all of its dependencies with the proper revisions in detached HEAD state.
78
+
79
+ If you want to setup your project on another machine, simply run `multi clone` with the appropriate parameters. This will clone the project and each of its dependencies, then checkout the appropriate work branches.
80
+
81
+ If you want to stop using git-multirepo, run `multi uninit`. This will remove all traces of git-multirepo from your repository and working copy, including local git hooks.
82
+
83
+ ## Advantages
84
+
85
+ - Makes setting up a project on a new machine a breeze.
86
+ - Really effective when working on multiple projects that share a common set of constantly evolving dependencies.
87
+ - Each dependency's repository is totally independent from the main repository, which simplifies a lot of things (merges, contributing upstream, etc.) and works well with git GUIs.
88
+ - While the repositories are independent, git-multirepo makes sure to track everything that's required to bring back a previous version of your project in a valid state.
89
+ - It supports sub-dependencies (e.g. dependencies that have dependencies of their own) so that you can bring back any subset of your project in a valid state at will.
90
+ - Much more approachable to novice developers than submodules or subtrees.
91
+ - Once setup, there is little need for git-multirepo commands, so you are free to use whatever tools you like to work with your git repos.
92
+ - Low possibility of human error (such as forgetting to contribute changes to dependencies back to the appropriate remotes, forgetting to commit dependencies in the proper order, etc.)
93
+ - You're not stuck with git-multirepo. It stores its metadata as [YAML](http://www.yaml.org) in the main repo. You can clone and checkout appropriate revisions of your dependencies by hand without git-multirepo if you need to. The information is there, in human-readable form.
94
+
95
+ | How It Handles... | git-multirepo | git submodules | git subtrees |
96
+ |----------------------------------|:----------------:|:--------------:|:------------:|
97
+ | Working Copy | beside main repo | in main repo | in main repo |
98
+ | Constantly Evolving Dependencies | easy | hard | passable |
99
+ | Merging Changes to Dependencies | easy | hard | passable |
100
+ | Contributing Upstream | easy | easy | passable |
101
+ | Continuous Integration | medium | medium | easy |
102
+ | Branch-Based Workflows | easy* | hard | easy |
103
+
104
+ (*) The `multi branch` and `multi merge` commands faciliate branching and merging the main repo and its dependencies as a whole.
105
+
106
+ ## Limitations
107
+
108
+ - This tool should be considered beta at the moment.
109
+ - The tracked project and its dependencies must live beside each other on disk.
110
+ - You must install the tool on your CI server (`gem install git-multirepo`) and perform a `multi install` prior to checkout dependencies prior to building.
111
+
112
+ ## Summary of Commands
113
+
114
+ Here is a quick rundown of commands available to you in git-multirepo:
115
+
116
+ | Command | Description |
117
+ |---------|-------------|
118
+ | init | Initialize the current repository as a multirepo project. |
119
+ | add | Track an additional dependency with multirepo. |
120
+ | branch | Create and/or checkout a new branch for all repos. |
121
+ | checkout | Checks out the specified commit or branch of the main repo and checks out matching versions of all dependencies. |
122
+ | clone | Clones the specified repository in a subfolder, then installs it. |
123
+ | do | Perform an arbitrary Git operation in the main repository, dependency repositories or all repositories. |
124
+ | graph | Graphs the dependency tree from the current repository. |
125
+ | install | Clones and checks out dependencies as defined in the version-controlled multirepo metadata files and installs git-multirepo's local git hooks. |
126
+ | merge | Performs a git merge on all dependencies and the main repo, in the proper order. |
127
+ | open | Opens repositories in the OS's file explorer. |
128
+ | remove | Removes the specified dependency from multirepo. |
129
+ | update | Force-updates the multirepo tracking files. |
130
+ | uninit | Removes all traces of multirepo in the current multirepo repository. |
131
+
132
+ To read more about each command, use the `--help` flag (e.g. `$ multi clone --help`).
133
+
134
+ ## Metadata
135
+
136
+ git-multirepo stores all of its metadata in three files:
137
+
138
+ | File | Format | Updated | Contents |
139
+ |------|--------|---------|----------|
140
+ | .multirepo | YAML | at initialization | A collection of your project's dependencies. For each dependency, stores its **local path** relative to the main repo and the **remote URL** your project depends upon.
141
+ | .multirepo.lock | YAML | before each commit | For each dependency, stores the **commit id** and **branch** on which the dependency was when the main repo was committed. The dependency's **name** is also included but only serves as a reference to make inspecting the lock file easier. |
142
+ | .multirepo.meta | YAML | before each commit | Various git-multirepo metadata, such as the **git-multirepo version** that the last commit was performed with. |
143
+
147
144
  The information contained in .multirepo and .multirepo.lock allow one-step cloning of a project and all its dependencies, and checking out any prior revision of the main project with appropriate revisions of all of its dependencies, respectively.