git-multirepo 1.0.0.beta46 → 1.0.0.beta47

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.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 +154 -154
  11. data/Rakefile +2 -2
  12. data/bin/multi +10 -10
  13. data/docs/bug-repros/91565510-repro.sh +20 -20
  14. data/git-multirepo.gemspec +31 -31
  15. data/lib/commands.rb +14 -14
  16. data/lib/git-multirepo.rb +2 -2
  17. data/lib/info.rb +4 -4
  18. data/lib/multirepo/commands/add-command.rb +50 -50
  19. data/lib/multirepo/commands/branch-command.rb +81 -81
  20. data/lib/multirepo/commands/checkout-command.rb +119 -119
  21. data/lib/multirepo/commands/clone-command.rb +67 -67
  22. data/lib/multirepo/commands/command.rb +89 -89
  23. data/lib/multirepo/commands/do-command.rb +102 -102
  24. data/lib/multirepo/commands/graph-command.rb +42 -42
  25. data/lib/multirepo/commands/init-command.rb +119 -119
  26. data/lib/multirepo/commands/inspect-command.rb +38 -38
  27. data/lib/multirepo/commands/install-command.rb +147 -146
  28. data/lib/multirepo/commands/merge-command.rb +225 -225
  29. data/lib/multirepo/commands/open-command.rb +56 -56
  30. data/lib/multirepo/commands/remove-command.rb +47 -47
  31. data/lib/multirepo/commands/uninit-command.rb +17 -17
  32. data/lib/multirepo/commands/update-command.rb +55 -55
  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 -28
  37. data/lib/multirepo/files/lock-file.rb +55 -55
  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 -31
  42. data/lib/multirepo/git/change.rb +10 -10
  43. data/lib/multirepo/git/commit.rb +6 -6
  44. data/lib/multirepo/git/git-runner.rb +57 -46
  45. data/lib/multirepo/git/git.rb +9 -9
  46. data/lib/multirepo/git/ref.rb +37 -37
  47. data/lib/multirepo/git/remote.rb +16 -16
  48. data/lib/multirepo/git/repo.rb +122 -122
  49. data/lib/multirepo/hooks/post-commit-hook.rb +22 -22
  50. data/lib/multirepo/hooks/pre-commit-hook.rb +34 -34
  51. data/lib/multirepo/logic/dependency.rb +5 -5
  52. data/lib/multirepo/logic/merge-descriptor.rb +94 -94
  53. data/lib/multirepo/logic/node.rb +71 -71
  54. data/lib/multirepo/logic/performer.rb +56 -56
  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/popen-runner.rb +27 -0
  59. data/lib/multirepo/utility/system-runner.rb +14 -0
  60. data/lib/multirepo/utility/utils.rb +94 -94
  61. data/lib/multirepo/utility/verbosity.rb +6 -0
  62. data/resources/.gitconfig +2 -2
  63. data/resources/post-commit +5 -5
  64. data/resources/pre-commit +5 -5
  65. data/spec/integration/init_spec.rb +18 -18
  66. data/spec/spec_helper.rb +89 -89
  67. metadata +6 -4
  68. data/lib/multirepo/utility/runner.rb +0 -35
@@ -1,57 +1,57 @@
1
- require "os"
2
-
3
- require "multirepo/utility/console"
4
- require "multirepo/utility/utils"
5
-
6
- module MultiRepo
7
- class OpenCommand < Command
8
- self.command = "open"
9
- self.summary = "Opens repositories in the OS's file explorer."
10
-
11
- def self.options
12
- [
13
- ['[--all]', 'Open the main repository and all dependencies.'],
14
- ['[--main]', 'Open the main repository.'],
15
- ['[--deps]', 'Open dependencies.']
16
- ].concat(super)
17
- end
18
-
19
- def initialize(argv)
20
- @all = argv.flag?("all")
21
- @main_only = argv.flag?("main")
22
- @deps_only = argv.flag?("deps")
23
- super
24
- end
25
-
26
- def validate!
27
- super
28
- unless validate_only_one_flag(@all, @main_only, @deps_only)
29
- help! "You can't provide more than one operation modifier (--deps, --main, etc.)"
30
- end
31
- end
32
-
33
- def run
34
- ensure_in_work_tree
35
- ensure_multirepo_enabled
36
-
37
- if @all
38
- open_dependencies
39
- open_main
40
- elsif @main_only
41
- open_main
42
- else
43
- open_dependencies
44
- end
45
- end
46
-
47
- def open_main
48
- Utils.reveal_in_default_file_browser(".")
49
- end
50
-
51
- def open_dependencies
52
- ConfigFile.new(".").load_entries.each do |entry|
53
- Utils.reveal_in_default_file_browser(entry.repo.path)
54
- end
55
- end
56
- end
1
+ require "os"
2
+
3
+ require "multirepo/utility/console"
4
+ require "multirepo/utility/utils"
5
+
6
+ module MultiRepo
7
+ class OpenCommand < Command
8
+ self.command = "open"
9
+ self.summary = "Opens repositories in the OS's file explorer."
10
+
11
+ def self.options
12
+ [
13
+ ['[--all]', 'Open the main repository and all dependencies.'],
14
+ ['[--main]', 'Open the main repository.'],
15
+ ['[--deps]', 'Open dependencies.']
16
+ ].concat(super)
17
+ end
18
+
19
+ def initialize(argv)
20
+ @all = argv.flag?("all")
21
+ @main_only = argv.flag?("main")
22
+ @deps_only = argv.flag?("deps")
23
+ super
24
+ end
25
+
26
+ def validate!
27
+ super
28
+ unless validate_only_one_flag(@all, @main_only, @deps_only)
29
+ help! "You can't provide more than one operation modifier (--deps, --main, etc.)"
30
+ end
31
+ end
32
+
33
+ def run
34
+ ensure_in_work_tree
35
+ ensure_multirepo_enabled
36
+
37
+ if @all
38
+ open_dependencies
39
+ open_main
40
+ elsif @main_only
41
+ open_main
42
+ else
43
+ open_dependencies
44
+ end
45
+ end
46
+
47
+ def open_main
48
+ Utils.reveal_in_default_file_browser(".")
49
+ end
50
+
51
+ def open_dependencies
52
+ ConfigFile.new(".").load_entries.each do |entry|
53
+ Utils.reveal_in_default_file_browser(entry.repo.path)
54
+ end
55
+ end
56
+ end
57
57
  end
@@ -1,48 +1,48 @@
1
- require "multirepo/utility/console"
2
- require "multirepo/files/config-file"
3
-
4
- module MultiRepo
5
- class RemoveCommand < Command
6
- self.command = "remove"
7
- self.summary = "Removes the specified dependency from multirepo."
8
-
9
- def self.options
10
- [
11
- ['<path>', 'The relative path to the dependency to remove (e.g. ../MyOldDependency).'],
12
- ['[--delete]', 'Delete the dependency on disk in addition to removing it from the multirepo config.']
13
- ].concat(super)
14
- end
15
-
16
- def initialize(argv)
17
- @path = argv.shift_argument
18
- @delete = argv.flag?("delete")
19
- super
20
- end
21
-
22
- def validate!
23
- super
24
- help! "You must specify a dependency repository to remove" unless @path
25
- end
26
-
27
- def run
28
- ensure_in_work_tree
29
- ensure_multirepo_enabled
30
-
31
- repo = Repo.new(@path)
32
- entry = ConfigEntry.new(repo)
33
-
34
- config_file = ConfigFile.new(".")
35
- if config_file.entry_exists?(entry)
36
- config_file.remove_entry(entry)
37
- Console.log_step("Removed '#{@path}' from the .multirepo file")
38
-
39
- if @delete
40
- FileUtils.rm_rf(@path)
41
- Console.log_step("Deleted '#{@path}' from disk")
42
- end
43
- else
44
- raise MultiRepoException, "'#{@path}' isn't tracked by multirepo"
45
- end
46
- end
47
- end
1
+ require "multirepo/utility/console"
2
+ require "multirepo/files/config-file"
3
+
4
+ module MultiRepo
5
+ class RemoveCommand < Command
6
+ self.command = "remove"
7
+ self.summary = "Removes the specified dependency from multirepo."
8
+
9
+ def self.options
10
+ [
11
+ ['<path>', 'The relative path to the dependency to remove (e.g. ../MyOldDependency).'],
12
+ ['[--delete]', 'Delete the dependency on disk in addition to removing it from the multirepo config.']
13
+ ].concat(super)
14
+ end
15
+
16
+ def initialize(argv)
17
+ @path = argv.shift_argument
18
+ @delete = argv.flag?("delete")
19
+ super
20
+ end
21
+
22
+ def validate!
23
+ super
24
+ help! "You must specify a dependency repository to remove" unless @path
25
+ end
26
+
27
+ def run
28
+ ensure_in_work_tree
29
+ ensure_multirepo_enabled
30
+
31
+ repo = Repo.new(@path)
32
+ entry = ConfigEntry.new(repo)
33
+
34
+ config_file = ConfigFile.new(".")
35
+ if config_file.entry_exists?(entry)
36
+ config_file.remove_entry(entry)
37
+ Console.log_step("Removed '#{@path}' from the .multirepo file")
38
+
39
+ if @delete
40
+ FileUtils.rm_rf(@path)
41
+ Console.log_step("Deleted '#{@path}' from disk")
42
+ end
43
+ else
44
+ raise MultiRepoException, "'#{@path}' isn't tracked by multirepo"
45
+ end
46
+ end
47
+ end
48
48
  end
@@ -1,18 +1,18 @@
1
- require "multirepo/utility/console"
2
-
3
- module MultiRepo
4
- class UninitCommand < Command
5
- self.command = "uninit"
6
- self.summary = "Removes all traces of multirepo in the current multirepo repository."
7
-
8
- def run
9
- ensure_in_work_tree
10
-
11
- FileUtils.rm_f(".multirepo")
12
- TrackingFiles.new(".").delete
13
- uninstall_hooks
14
-
15
- Console.log_step("All traces of multirepo have been removed from this repository")
16
- end
17
- end
1
+ require "multirepo/utility/console"
2
+
3
+ module MultiRepo
4
+ class UninitCommand < Command
5
+ self.command = "uninit"
6
+ self.summary = "Removes all traces of multirepo in the current multirepo repository."
7
+
8
+ def run
9
+ ensure_in_work_tree
10
+
11
+ FileUtils.rm_f(".multirepo")
12
+ TrackingFiles.new(".").delete
13
+ uninstall_hooks
14
+
15
+ Console.log_step("All traces of multirepo have been removed from this repository")
16
+ end
17
+ end
18
18
  end
@@ -1,56 +1,56 @@
1
- require "multirepo/utility/console"
2
- require "multirepo/files/tracking-files"
3
-
4
- module MultiRepo
5
- class UpdateCommand < Command
6
- self.command = "update"
7
- self.summary = "Force-updates the multirepo tracking files."
8
-
9
- def self.options
10
- [
11
- ['[--force]', 'Update the tracking files even if dependencies contain uncommitted changes.'],
12
- ['[--commit]', 'Commit the tracking files after updating them.']
13
- ].concat(super)
14
- end
15
-
16
- def initialize(argv)
17
- @commit = argv.flag?("commit")
18
- @force = argv.flag?("force")
19
- super
20
- end
21
-
22
- def run
23
- ensure_in_work_tree
24
- ensure_multirepo_enabled
25
-
26
- Console.log_step("Updating...")
27
-
28
- dependencies_clean = Utils.dependencies_clean?(ConfigFile.new(".").load_entries)
29
- if dependencies_clean
30
- update_lock_file_step("Updated tracking files")
31
- elsif !dependencies_clean && @force
32
- update_lock_file_step("Force-updated tracking files (ignoring uncommitted changes)")
33
- else
34
- raise MultiRepoException, "Can't update because not all dependencies are clean"
35
- end
36
-
37
- Console.log_step("Done!")
38
- end
39
-
40
- def update_lock_file_step(log_message)
41
- tracking_files = TrackingFiles.new(".")
42
- changed = tracking_files.update
43
-
44
- if changed
45
- Console.log_substep("Updated tracking files")
46
- else
47
- Console.log_substep("Tracking files are already up-to-date")
48
- end
49
-
50
- if @commit
51
- committed = tracking_files.commit("[multirepo] Updated tracking files manually")
52
- Console.log_substep("Committed tracking files") if committed
53
- end
54
- end
55
- end
1
+ require "multirepo/utility/console"
2
+ require "multirepo/files/tracking-files"
3
+
4
+ module MultiRepo
5
+ class UpdateCommand < Command
6
+ self.command = "update"
7
+ self.summary = "Force-updates the multirepo tracking files."
8
+
9
+ def self.options
10
+ [
11
+ ['[--force]', 'Update the tracking files even if dependencies contain uncommitted changes.'],
12
+ ['[--commit]', 'Commit the tracking files after updating them.']
13
+ ].concat(super)
14
+ end
15
+
16
+ def initialize(argv)
17
+ @commit = argv.flag?("commit")
18
+ @force = argv.flag?("force")
19
+ super
20
+ end
21
+
22
+ def run
23
+ ensure_in_work_tree
24
+ ensure_multirepo_enabled
25
+
26
+ Console.log_step("Updating...")
27
+
28
+ dependencies_clean = Utils.dependencies_clean?(ConfigFile.new(".").load_entries)
29
+ if dependencies_clean
30
+ update_lock_file_step("Updated tracking files")
31
+ elsif !dependencies_clean && @force
32
+ update_lock_file_step("Force-updated tracking files (ignoring uncommitted changes)")
33
+ else
34
+ raise MultiRepoException, "Can't update because not all dependencies are clean"
35
+ end
36
+
37
+ Console.log_step("Done!")
38
+ end
39
+
40
+ def update_lock_file_step(log_message)
41
+ tracking_files = TrackingFiles.new(".")
42
+ changed = tracking_files.update
43
+
44
+ if changed
45
+ Console.log_substep("Updated tracking files")
46
+ else
47
+ Console.log_substep("Tracking files are already up-to-date")
48
+ end
49
+
50
+ if @commit
51
+ committed = tracking_files.commit("[multirepo] Updated tracking files manually")
52
+ Console.log_substep("Committed tracking files") if committed
53
+ end
54
+ end
55
+ end
56
56
  end
@@ -1,16 +1,16 @@
1
- require "singleton"
2
-
3
- module MultiRepo
4
- class Config
5
- include Singleton
6
-
7
- attr_accessor :verbose
8
- @verbose = false
9
-
10
- attr_accessor :running_git_hook
11
- @running_git_hook = false
12
-
13
- attr_accessor :git_executable
14
- @git_executable = nil
15
- end
1
+ require "singleton"
2
+
3
+ module MultiRepo
4
+ class Config
5
+ include Singleton
6
+
7
+ attr_accessor :verbose
8
+ @verbose = false
9
+
10
+ attr_accessor :running_git_hook
11
+ @running_git_hook = false
12
+
13
+ attr_accessor :git_executable
14
+ @git_executable = nil
15
+ end
16
16
  end
@@ -1,39 +1,39 @@
1
- require "securerandom"
2
-
3
- require "multirepo/utility/console"
4
- require "multirepo/git/repo"
5
-
6
- module MultiRepo
7
- class ConfigEntry
8
- attr_accessor :id
9
- attr_accessor :path
10
- attr_accessor :url
11
- attr_accessor :repo
12
-
13
- def encode_with(coder)
14
- coder["id"] = @id
15
- coder["path"] = @path
16
- coder["url"] = @url
17
- end
18
-
19
- def initialize(repo)
20
- @id = SecureRandom.uuid
21
- @path = repo.path
22
- @url = repo.exists? ? repo.remote('origin').url : nil
23
- end
24
-
25
- def ==(entry)
26
- entry_path = Pathname.new(entry.path)
27
- self_path = Pathname.new(self.path)
28
- entry_path.exist? && self_path.exist? && entry_path.realpath == self_path.realpath
29
- end
30
-
31
- def repo
32
- Repo.new(path)
33
- end
34
-
35
- def name
36
- repo.basename
37
- end
38
- end
1
+ require "securerandom"
2
+
3
+ require "multirepo/utility/console"
4
+ require "multirepo/git/repo"
5
+
6
+ module MultiRepo
7
+ class ConfigEntry
8
+ attr_accessor :id
9
+ attr_accessor :path
10
+ attr_accessor :url
11
+ attr_accessor :repo
12
+
13
+ def encode_with(coder)
14
+ coder["id"] = @id
15
+ coder["path"] = @path
16
+ coder["url"] = @url
17
+ end
18
+
19
+ def initialize(repo)
20
+ @id = SecureRandom.uuid
21
+ @path = repo.path
22
+ @url = repo.exists? ? repo.remote('origin').url : nil
23
+ end
24
+
25
+ def ==(entry)
26
+ entry_path = Pathname.new(entry.path)
27
+ self_path = Pathname.new(self.path)
28
+ entry_path.exist? && self_path.exist? && entry_path.realpath == self_path.realpath
29
+ end
30
+
31
+ def repo
32
+ Repo.new(path)
33
+ end
34
+
35
+ def name
36
+ repo.basename
37
+ end
38
+ end
39
39
  end