git 2.0.0.pre2 → 2.0.0.pre3
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/CHANGELOG.md +8 -0
- data/lib/git/base.rb +21 -8
- data/lib/git/lib.rb +2 -1
- data/lib/git/version.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0bd064fe363a807e4c9a77eaf61810f6fc41323ad1b60a57eb0379460f26e91c
|
4
|
+
data.tar.gz: 890bb2663ba5e3cc9b12f3dae403a019e3b7eb0ffb95ad2fdf5989073d53e807
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bbd732fb4061c1b68500860218eb14248adc48d4e4ff77d9b2c19cd13de5cb54c9c1bf313949131c91c7e3a25b24d8d105abb485571e06b25415875a67ce4f94
|
7
|
+
data.tar.gz: 6bf02024406485e4150cc76073d859446e490a659e6a17dad1f0f04c9d0084bcb063ccbc12dc839baa1b20094e2a2dcaf800c744560c49eab29264b588d154fb
|
data/CHANGELOG.md
CHANGED
@@ -5,6 +5,14 @@
|
|
5
5
|
|
6
6
|
# Change Log
|
7
7
|
|
8
|
+
## v2.0.0.pre3 (2024-03-15)
|
9
|
+
|
10
|
+
[Full Changelog](https://github.com/ruby-git/ruby-git/compare/v2.0.0.pre2..v2.0.0.pre3)
|
11
|
+
|
12
|
+
Changes since v2.0.0.pre2:
|
13
|
+
|
14
|
+
* 5d4b34e Allow allow_unrelated_histories option for Base#pull
|
15
|
+
|
8
16
|
## v2.0.0.pre2 (2024-02-24)
|
9
17
|
|
10
18
|
[Full Changelog](https://github.com/ruby-git/ruby-git/compare/v2.0.0.pre1..v2.0.0.pre2)
|
data/lib/git/base.rb
CHANGED
@@ -409,14 +409,27 @@ module Git
|
|
409
409
|
self.lib.conflicts(&block)
|
410
410
|
end
|
411
411
|
|
412
|
-
#
|
413
|
-
#
|
414
|
-
#
|
415
|
-
#
|
416
|
-
#
|
417
|
-
#
|
418
|
-
|
419
|
-
|
412
|
+
# Pulls the given branch from the given remote into the current branch
|
413
|
+
#
|
414
|
+
# @param remote [String] the remote repository to pull from
|
415
|
+
# @param branch [String] the branch to pull from
|
416
|
+
# @param opts [Hash] options to pass to the pull command
|
417
|
+
#
|
418
|
+
# @option opts [Boolean] :allow_unrelated_histories (false) Merges histories of two projects that started their
|
419
|
+
# lives independently
|
420
|
+
# @example pulls from origin/master
|
421
|
+
# @git.pull
|
422
|
+
# @example pulls from upstream/master
|
423
|
+
# @git.pull('upstream')
|
424
|
+
# @example pulls from upstream/develop
|
425
|
+
# @git.pull('upstream', 'develop')
|
426
|
+
#
|
427
|
+
# @return [Void]
|
428
|
+
#
|
429
|
+
# @raise [Git::FailedError] if the pull fails
|
430
|
+
# @raise [ArgumentError] if a branch is given without a remote
|
431
|
+
def pull(remote = nil, branch = nil, opts = {})
|
432
|
+
self.lib.pull(remote, branch, opts)
|
420
433
|
end
|
421
434
|
|
422
435
|
# returns an array of Git:Remote objects
|
data/lib/git/lib.rb
CHANGED
@@ -1006,10 +1006,11 @@ module Git
|
|
1006
1006
|
end
|
1007
1007
|
end
|
1008
1008
|
|
1009
|
-
def pull(remote = nil, branch = nil)
|
1009
|
+
def pull(remote = nil, branch = nil, opts = {})
|
1010
1010
|
raise ArgumentError, "You must specify a remote if a branch is specified" if remote.nil? && !branch.nil?
|
1011
1011
|
|
1012
1012
|
arr_opts = []
|
1013
|
+
arr_opts << '--allow-unrelated-histories' if opts[:allow_unrelated_histories]
|
1013
1014
|
arr_opts << remote if remote
|
1014
1015
|
arr_opts << branch if branch
|
1015
1016
|
command('pull', *arr_opts)
|
data/lib/git/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: git
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.0.0.
|
4
|
+
version: 2.0.0.pre3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Scott Chacon and others
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-03-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: addressable
|
@@ -222,8 +222,8 @@ licenses:
|
|
222
222
|
metadata:
|
223
223
|
homepage_uri: http://github.com/ruby-git/ruby-git
|
224
224
|
source_code_uri: http://github.com/ruby-git/ruby-git
|
225
|
-
changelog_uri: https://rubydoc.info/gems/git/2.0.0.
|
226
|
-
documentation_uri: https://rubydoc.info/gems/git/2.0.0.
|
225
|
+
changelog_uri: https://rubydoc.info/gems/git/2.0.0.pre3/file/CHANGELOG.md
|
226
|
+
documentation_uri: https://rubydoc.info/gems/git/2.0.0.pre3
|
227
227
|
post_install_message:
|
228
228
|
rdoc_options: []
|
229
229
|
require_paths:
|