git-multirepo 1.0.0.beta45 → 1.0.0.beta46

Sign up to get free protection for your applications and to get access to all the features.
Files changed (68) 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 +21 -21
  6. data/.multirepo.lock +26 -26
  7. data/.multirepo.meta +2 -2
  8. data/.rspec +2 -2
  9. data/Gemfile +4 -4
  10. data/Gemfile.lock +42 -42
  11. data/LICENSE +22 -22
  12. data/README.md +154 -144
  13. data/Rakefile +2 -2
  14. data/bin/multi +10 -10
  15. data/docs/bug-repros/91565510-repro.sh +20 -20
  16. data/docs/git-multirepo-cheatsheet.docx +0 -0
  17. data/git-multirepo.gemspec +31 -31
  18. data/lib/commands.rb +14 -14
  19. data/lib/git-multirepo.rb +2 -2
  20. data/lib/info.rb +4 -4
  21. data/lib/multirepo/commands/add-command.rb +50 -50
  22. data/lib/multirepo/commands/branch-command.rb +81 -81
  23. data/lib/multirepo/commands/checkout-command.rb +119 -119
  24. data/lib/multirepo/commands/clone-command.rb +67 -67
  25. data/lib/multirepo/commands/command.rb +89 -89
  26. data/lib/multirepo/commands/do-command.rb +102 -100
  27. data/lib/multirepo/commands/graph-command.rb +42 -42
  28. data/lib/multirepo/commands/init-command.rb +119 -119
  29. data/lib/multirepo/commands/inspect-command.rb +38 -39
  30. data/lib/multirepo/commands/install-command.rb +146 -137
  31. data/lib/multirepo/commands/merge-command.rb +225 -225
  32. data/lib/multirepo/commands/open-command.rb +56 -55
  33. data/lib/multirepo/commands/remove-command.rb +47 -47
  34. data/lib/multirepo/commands/uninit-command.rb +17 -17
  35. data/lib/multirepo/commands/update-command.rb +55 -55
  36. data/lib/multirepo/config.rb +15 -15
  37. data/lib/multirepo/files/config-entry.rb +38 -38
  38. data/lib/multirepo/files/config-file.rb +45 -45
  39. data/lib/multirepo/files/lock-entry.rb +28 -28
  40. data/lib/multirepo/files/lock-file.rb +55 -55
  41. data/lib/multirepo/files/meta-file.rb +40 -40
  42. data/lib/multirepo/files/tracking-file.rb +8 -8
  43. data/lib/multirepo/files/tracking-files.rb +46 -46
  44. data/lib/multirepo/git/branch.rb +31 -31
  45. data/lib/multirepo/git/change.rb +10 -10
  46. data/lib/multirepo/git/commit.rb +6 -6
  47. data/lib/multirepo/git/git-runner.rb +46 -46
  48. data/lib/multirepo/git/git.rb +9 -9
  49. data/lib/multirepo/git/ref.rb +37 -37
  50. data/lib/multirepo/git/remote.rb +16 -16
  51. data/lib/multirepo/git/repo.rb +122 -122
  52. data/lib/multirepo/hooks/post-commit-hook.rb +22 -22
  53. data/lib/multirepo/hooks/pre-commit-hook.rb +34 -34
  54. data/lib/multirepo/logic/dependency.rb +5 -5
  55. data/lib/multirepo/logic/merge-descriptor.rb +94 -94
  56. data/lib/multirepo/logic/node.rb +71 -71
  57. data/lib/multirepo/logic/performer.rb +56 -56
  58. data/lib/multirepo/logic/revision-selector.rb +34 -34
  59. data/lib/multirepo/multirepo-exception.rb +5 -5
  60. data/lib/multirepo/utility/console.rb +51 -51
  61. data/lib/multirepo/utility/runner.rb +34 -34
  62. data/lib/multirepo/utility/utils.rb +94 -94
  63. data/resources/.gitconfig +2 -2
  64. data/resources/post-commit +5 -5
  65. data/resources/pre-commit +5 -5
  66. data/spec/integration/init_spec.rb +18 -18
  67. data/spec/spec_helper.rb +89 -89
  68. metadata +2 -2
data/README.md CHANGED
@@ -1,145 +1,155 @@
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 — using local git hooks — 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
- | inspect | Outputs various information about multirepo-enabled repos. For use in scripting and CI scenarios. |
126
- | install | Clones and checks out dependencies as defined in the version-controlled multirepo metadata files and installs git-multirepo's local git hooks. Idempotent for a given main repo checkout. |
127
- | merge | Performs a git merge on all dependencies and the main repo, in the proper order. |
128
- | open | Opens repositories in the OS's file explorer. |
129
- | remove | Removes the specified dependency from multirepo. |
130
- | update | Force-updates the multirepo tracking files. |
131
- | uninit | Removes all traces of multirepo in the current multirepo repository. |
132
-
133
- To read more about each command, use the `--help` flag (e.g. `$ multi clone --help`).
134
-
135
- ## Metadata
136
-
137
- git-multirepo stores all of its metadata in three files:
138
-
139
- | File | Format | Updated | Contents |
140
- |------|--------|---------|----------|
141
- | .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.
142
- | .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. |
143
- | .multirepo.meta | YAML | before each commit | Various git-multirepo metadata, such as the **git-multirepo version** that the last commit was performed with. |
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 — using local git hooks — 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
+ ## Continuous Integration
113
+
114
+ git-multirepo supports continuous integration in two ways:
115
+
116
+ - The `install` command has a special `--ci` flag, which:
117
+ - Installs exact revisions of dependencies in-place
118
+ - Skips local hooks installation
119
+ - Logs additional information that's useful in a CI context
120
+ - The `inspect` command offers plumbing-style output that can be used to inspect repositories to conditionally perform multirepo operations on them afterwards.
121
+
122
+ ## Summary of Commands
123
+
124
+ Here is a quick rundown of commands available to you in git-multirepo:
125
+
126
+ | Command | Description |
127
+ |---------|-------------|
128
+ | init | Initialize the current repository as a multirepo project. |
129
+ | add | Track an additional dependency with multirepo. |
130
+ | branch | Create and/or checkout a new branch for all repos. |
131
+ | checkout | Checks out the specified commit or branch of the main repo and checks out matching versions of all dependencies. |
132
+ | clone | Clones the specified repository in a subfolder, then installs it. |
133
+ | do | Perform an arbitrary Git operation in the main repository, dependency repositories or all repositories. |
134
+ | graph | Graphs the dependency tree from the current repository. |
135
+ | inspect | Outputs various information about multirepo-enabled repos. For use in scripting and CI scenarios. |
136
+ | install | Clones and checks out dependencies as defined in the version-controlled multirepo metadata files and installs git-multirepo's local git hooks. Idempotent for a given main repo checkout. |
137
+ | merge | Performs a git merge on all dependencies and the main repo, in the proper order. |
138
+ | open | Opens repositories in the OS's file explorer. |
139
+ | remove | Removes the specified dependency from multirepo. |
140
+ | update | Force-updates the multirepo tracking files. |
141
+ | uninit | Removes all traces of multirepo in the current multirepo repository. |
142
+
143
+ To read more about each command, use the `--help` flag (e.g. `$ multi clone --help`).
144
+
145
+ ## Metadata
146
+
147
+ git-multirepo stores all of its metadata in three files:
148
+
149
+ | File | Format | Updated | Contents |
150
+ |------|--------|---------|----------|
151
+ | .multirepo | YAML | at *initialization*, on *add* on *remove* | 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.
152
+ | .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. |
153
+ | .multirepo.meta | YAML | before each commit | Various git-multirepo metadata, such as the **git-multirepo version** that the last commit was performed with. |
154
+
145
155
  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.
data/Rakefile CHANGED
@@ -1,2 +1,2 @@
1
- require "bundler/gem_tasks"
2
-
1
+ require "bundler/gem_tasks"
2
+
data/bin/multi CHANGED
@@ -1,11 +1,11 @@
1
- #!/usr/bin/env ruby
2
-
3
- require "claide"
4
- require "commands"
5
-
6
- trap("INT") do
7
- puts "\rAbort, abort!!" # \r hides the interrupt control characters
8
- exit
9
- end
10
-
1
+ #!/usr/bin/env ruby
2
+
3
+ require "claide"
4
+ require "commands"
5
+
6
+ trap("INT") do
7
+ puts "\rAbort, abort!!" # \r hides the interrupt control characters
8
+ exit
9
+ end
10
+
11
11
  MultiRepo::Command.run(ARGV)
@@ -1,21 +1,21 @@
1
- echo "----> Setup a new test repo"
2
- dir_name="PreCommitHookAddTest"
3
- rm -rf $dir_name; mkdir $dir_name; cd $dir_name
4
- git init; git commit --allow-empty -m "Initial commit"
5
-
6
- echo "----> Add a pre-commit hook that stages a file that doesn't currently exist in the repo"
7
- echo "touch auto-added; git add auto-added" > .git/hooks/pre-commit
8
- chmod +x .git/hooks/pre-commit
9
-
10
- echo "----> Try committing a new file using the '-o' flag"
11
- touch manually-added; git add manually-added
12
- git commit -o -m "Commit that ran the pre-commit hook and should contain file 'auto-added'" -- manually-added
13
-
14
- echo "----> Results (expected: working copy clean; actual: auto-added is reported as both DELETED and UNTRACKED. HEAD and working copy are the same, staging area contains ‘incorrect' state)"
15
- git status
16
-
17
- echo "----> Stage the file after the fact"
18
- git add auto-added
19
-
20
- echo "----> Notice that the working copy is now clean"
1
+ echo "----> Setup a new test repo"
2
+ dir_name="PreCommitHookAddTest"
3
+ rm -rf $dir_name; mkdir $dir_name; cd $dir_name
4
+ git init; git commit --allow-empty -m "Initial commit"
5
+
6
+ echo "----> Add a pre-commit hook that stages a file that doesn't currently exist in the repo"
7
+ echo "touch auto-added; git add auto-added" > .git/hooks/pre-commit
8
+ chmod +x .git/hooks/pre-commit
9
+
10
+ echo "----> Try committing a new file using the '-o' flag"
11
+ touch manually-added; git add manually-added
12
+ git commit -o -m "Commit that ran the pre-commit hook and should contain file 'auto-added'" -- manually-added
13
+
14
+ echo "----> Results (expected: working copy clean; actual: auto-added is reported as both DELETED and UNTRACKED. HEAD and working copy are the same, staging area contains ‘incorrect' state)"
15
+ git status
16
+
17
+ echo "----> Stage the file after the fact"
18
+ git add auto-added
19
+
20
+ echo "----> Notice that the working copy is now clean"
21
21
  git status
Binary file
@@ -1,31 +1,31 @@
1
- # coding: utf-8
2
- lib = File.expand_path('../lib', __FILE__)
3
- $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
- require 'info'
5
-
6
- Gem::Specification.new do |spec|
7
- spec.name = MultiRepo::NAME
8
- spec.version = MultiRepo::VERSION
9
- spec.authors = ["Michaël Fortin"]
10
- spec.email = ["fortinmike@irradiated.net"]
11
- spec.summary = %q{Track multiple Git repositories side-by-side}
12
- spec.description = MultiRepo::DESCRIPTION
13
- spec.homepage = "https://github.com/fortinmike/git-multirepo"
14
- spec.license = "MIT"
15
-
16
- spec.required_ruby_version = '~> 2.0'
17
- spec.files = `git ls-files -z`.split("\x0")
18
- spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
19
- spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
20
- spec.require_paths = ["lib"]
21
-
22
- spec.add_development_dependency "bundler", "~> 1.7"
23
- spec.add_development_dependency "rake", "~> 10.0"
24
- spec.add_development_dependency "rspec", "~> 3.1.0"
25
-
26
- spec.add_runtime_dependency "claide", "~> 0.8", ">= 0.8.0"
27
- spec.add_runtime_dependency "colored", "~> 1.2"
28
- spec.add_runtime_dependency "os", "~> 0.9.6"
29
- spec.add_runtime_dependency "terminal-table", "~> 1.4.5"
30
- spec.add_runtime_dependency "ruby-graphviz", "~> 1.2.1"
31
- end
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'info'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = MultiRepo::NAME
8
+ spec.version = MultiRepo::VERSION
9
+ spec.authors = ["Michaël Fortin"]
10
+ spec.email = ["fortinmike@irradiated.net"]
11
+ spec.summary = %q{Track multiple Git repositories side-by-side}
12
+ spec.description = MultiRepo::DESCRIPTION
13
+ spec.homepage = "https://github.com/fortinmike/git-multirepo"
14
+ spec.license = "MIT"
15
+
16
+ spec.required_ruby_version = '~> 2.0'
17
+ spec.files = `git ls-files -z`.split("\x0")
18
+ spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
19
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
20
+ spec.require_paths = ["lib"]
21
+
22
+ spec.add_development_dependency "bundler", "~> 1.7"
23
+ spec.add_development_dependency "rake", "~> 10.0"
24
+ spec.add_development_dependency "rspec", "~> 3.1.0"
25
+
26
+ spec.add_runtime_dependency "claide", "~> 0.8", ">= 0.8.0"
27
+ spec.add_runtime_dependency "colored", "~> 1.2"
28
+ spec.add_runtime_dependency "os", "~> 0.9.6"
29
+ spec.add_runtime_dependency "terminal-table", "~> 1.4.5"
30
+ spec.add_runtime_dependency "ruby-graphviz", "~> 1.2.1"
31
+ end
data/lib/commands.rb CHANGED
@@ -1,15 +1,15 @@
1
- require_relative "multirepo/commands/command"
2
- require_relative "multirepo/commands/add-command"
3
- require_relative "multirepo/commands/branch-command"
4
- require_relative "multirepo/commands/checkout-command"
5
- require_relative "multirepo/commands/clone-command"
6
- require_relative "multirepo/commands/do-command"
7
- require_relative "multirepo/commands/graph-command"
8
- require_relative "multirepo/commands/init-command"
9
- require_relative "multirepo/commands/inspect-command"
10
- require_relative "multirepo/commands/install-command"
11
- require_relative "multirepo/commands/merge-command"
12
- require_relative "multirepo/commands/open-command"
13
- require_relative "multirepo/commands/remove-command"
14
- require_relative "multirepo/commands/uninit-command"
1
+ require_relative "multirepo/commands/command"
2
+ require_relative "multirepo/commands/add-command"
3
+ require_relative "multirepo/commands/branch-command"
4
+ require_relative "multirepo/commands/checkout-command"
5
+ require_relative "multirepo/commands/clone-command"
6
+ require_relative "multirepo/commands/do-command"
7
+ require_relative "multirepo/commands/graph-command"
8
+ require_relative "multirepo/commands/init-command"
9
+ require_relative "multirepo/commands/inspect-command"
10
+ require_relative "multirepo/commands/install-command"
11
+ require_relative "multirepo/commands/merge-command"
12
+ require_relative "multirepo/commands/open-command"
13
+ require_relative "multirepo/commands/remove-command"
14
+ require_relative "multirepo/commands/uninit-command"
15
15
  require_relative "multirepo/commands/update-command"
data/lib/git-multirepo.rb CHANGED
@@ -1,3 +1,3 @@
1
- require "multirepo/utility/console"
2
- require "multirepo/hooks/pre-commit-hook"
1
+ require "multirepo/utility/console"
2
+ require "multirepo/hooks/pre-commit-hook"
3
3
  require "multirepo/hooks/post-commit-hook"
data/lib/info.rb CHANGED
@@ -1,5 +1,5 @@
1
- module MultiRepo
2
- NAME = "git-multirepo"
3
- VERSION = "1.0.0.beta45"
4
- DESCRIPTION = "Track multiple Git repositories side-by-side."
1
+ module MultiRepo
2
+ NAME = "git-multirepo"
3
+ VERSION = "1.0.0.beta46"
4
+ DESCRIPTION = "Track multiple Git repositories side-by-side."
5
5
  end
@@ -1,51 +1,51 @@
1
- require "multirepo/utility/console"
2
- require "multirepo/files/config-file"
3
-
4
- module MultiRepo
5
- class AddCommand < Command
6
- self.command = "add"
7
- self.summary = "Track an additional dependency with multirepo."
8
-
9
- def self.options
10
- [['<path>', 'The relative path to the new dependency (e.g. ../MyNewDependency)']].concat(super)
11
- end
12
-
13
- def initialize(argv)
14
- @path = argv.shift_argument
15
- super
16
- end
17
-
18
- def validate!
19
- super
20
- help! "You must specify a repository to add as a dependency" unless @path
21
- end
22
-
23
- def run
24
- ensure_in_work_tree
25
- ensure_multirepo_enabled
26
- ensure_repo_valid
27
-
28
- config_file = ConfigFile.new(".")
29
- entry = ConfigEntry.new(Repo.new(@path))
30
-
31
- if config_file.entry_exists?(entry)
32
- Console.log_info("There is already an entry for '#{@path}' in the .multirepo file")
33
- else
34
- config_file.add_entry(entry)
35
- Console.log_step("Added '#{@path}' to the .multirepo file")
36
- end
37
- end
38
-
39
- def ensure_repo_valid
40
- raise MultiRepoException, "The provided path is not a direct sibling of the main repository" unless validate_is_sibling_repo(@path)
41
- raise MultiRepoException, "There is no folder at path '#{@path}'" unless Dir.exists?(@path)
42
- raise MultiRepoException, "'#{@path}' is not a repository" unless Repo.new(@path).exists?
43
- end
44
-
45
- def validate_is_sibling_repo(path)
46
- parent_dir = File.expand_path("..")
47
- path = File.expand_path("..", path)
48
- return parent_dir == path
49
- end
50
- end
1
+ require "multirepo/utility/console"
2
+ require "multirepo/files/config-file"
3
+
4
+ module MultiRepo
5
+ class AddCommand < Command
6
+ self.command = "add"
7
+ self.summary = "Track an additional dependency with multirepo."
8
+
9
+ def self.options
10
+ [['<path>', 'The relative path to the new dependency (e.g. ../MyNewDependency)']].concat(super)
11
+ end
12
+
13
+ def initialize(argv)
14
+ @path = argv.shift_argument
15
+ super
16
+ end
17
+
18
+ def validate!
19
+ super
20
+ help! "You must specify a repository to add as a dependency" unless @path
21
+ end
22
+
23
+ def run
24
+ ensure_in_work_tree
25
+ ensure_multirepo_enabled
26
+ ensure_repo_valid
27
+
28
+ config_file = ConfigFile.new(".")
29
+ entry = ConfigEntry.new(Repo.new(@path))
30
+
31
+ if config_file.entry_exists?(entry)
32
+ Console.log_info("There is already an entry for '#{@path}' in the .multirepo file")
33
+ else
34
+ config_file.add_entry(entry)
35
+ Console.log_step("Added '#{@path}' to the .multirepo file")
36
+ end
37
+ end
38
+
39
+ def ensure_repo_valid
40
+ raise MultiRepoException, "The provided path is not a direct sibling of the main repository" unless validate_is_sibling_repo(@path)
41
+ raise MultiRepoException, "There is no folder at path '#{@path}'" unless Dir.exists?(@path)
42
+ raise MultiRepoException, "'#{@path}' is not a repository" unless Repo.new(@path).exists?
43
+ end
44
+
45
+ def validate_is_sibling_repo(path)
46
+ parent_dir = File.expand_path("..")
47
+ path = File.expand_path("..", path)
48
+ return parent_dir == path
49
+ end
50
+ end
51
51
  end