git 3.0.2 → 3.1.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6b470fa5194ac99953b57fa35e69a7f14eadc6c1ad5bcdd6fde4c59278417a15
4
- data.tar.gz: f17a9441ed37186bb46f26ee475f3c83f2adde03c6d67e707dd9ba50855d4cbc
3
+ metadata.gz: 8ea6b964531a2d91cdc46c4e4c7a6d9f79251f246f2c8856c271b989c6d22800
4
+ data.tar.gz: 3fd581082807719899cdbe85eea5ca8eca35803402f6822c66bd5b95b27de10b
5
5
  SHA512:
6
- metadata.gz: 6094ef6f1f13e63e00631919cef8bd8c648de4722fa6c4f8f50f95684cd448e46b815c35b1699aff91ce75577c8d40502c0bee21b235b9e32ab0be498e2f34a4
7
- data.tar.gz: 1a729e9792ce1b1745f4412b0a164a8b229eccd62952022933725363e2fc23c27baea2076077ef3cfa34672e64725503b964b4e40090f062b1e6b4cb649387b5
6
+ metadata.gz: ae34ed0370f1ac66b68c03e13ef16d9415e531f3ebe0b7af906dc6d9150c4fc0eec63da7dde987530f7a24bf17966cb3053b40723e0056c78652763340b8e71c
7
+ data.tar.gz: ec675f610d8d193dac8c0debca9de1480d154b3d09c34e172dbb0e68d7a47625fdcb7d8bef7a5625e3fef8dfd10e029e1ff682ee033b698beebae43414b3454f
@@ -1,4 +1,4 @@
1
- Review our [guidelines for contributing](https://github.com/ruby-git/ruby-git/blob/master/CONTRIBUTING.md) to this repository. A good start is to:
1
+ Review our [guidelines for contributing](https://github.com/ruby-git/ruby-git/blob/main/CONTRIBUTING.md) to this repository. A good start is to:
2
2
 
3
3
  * Write tests for your changes
4
4
  * Run `rake` before pushing
@@ -1,15 +1,19 @@
1
1
  name: CI
2
2
 
3
3
  on:
4
- push:
5
- branches: [master,v1]
6
4
  pull_request:
7
- branches: [master,v1]
5
+ branches: [main]
8
6
  workflow_dispatch:
9
7
 
10
8
  jobs:
11
9
  build:
12
10
  name: Ruby ${{ matrix.ruby }} on ${{ matrix.operating-system }}
11
+
12
+ # Skip this job if triggered by a release PR
13
+ if: >-
14
+ github.event_name == 'workflow_dispatch' ||
15
+ (github.event_name == 'pull_request' && !startsWith(github.event.pull_request.head.ref, 'release-please--'))
16
+
13
17
  runs-on: ${{ matrix.operating-system }}
14
18
  continue-on-error: ${{ matrix.experimental == 'Yes' }}
15
19
  env: { JAVA_OPTS: -Djdk.io.File.enableADS=true }
@@ -7,7 +7,7 @@ permissions:
7
7
  on:
8
8
  pull_request:
9
9
  branches:
10
- - master
10
+ - main
11
11
 
12
12
  jobs:
13
13
  commit-lint:
@@ -2,12 +2,19 @@ name: CI Experimental
2
2
 
3
3
  on:
4
4
  push:
5
- branches: [master,v1]
5
+ branches: [main]
6
+
6
7
  workflow_dispatch:
7
8
 
8
9
  jobs:
9
10
  build:
10
11
  name: Ruby ${{ matrix.ruby }} on ${{ matrix.operating-system }}
12
+
13
+ # Skip this job if triggered by pushing a release commit
14
+ if: >-
15
+ github.event_name == 'workflow_dispatch' ||
16
+ (github.event_name == 'push' && !startsWith(github.event.head_commit.message, 'chore: release '))
17
+
11
18
  runs-on: ${{ matrix.operating-system }}
12
19
  continue-on-error: true
13
20
  env: { JAVA_OPTS: -Djdk.io.File.enableADS=true }
@@ -11,7 +11,7 @@ description: |
11
11
 
12
12
  on:
13
13
  push:
14
- branches: ["master"]
14
+ branches: ["main"]
15
15
 
16
16
  workflow_dispatch:
17
17
 
data/.gitignore CHANGED
@@ -9,4 +9,5 @@ pkg
9
9
  rdoc
10
10
  Gemfile.lock
11
11
  node_modules
12
- package-lock.json
12
+ package-lock.json
13
+ ai-prompt.erb
@@ -1,3 +1,3 @@
1
1
  {
2
- ".": "3.0.2"
2
+ ".": "3.1.1"
3
3
  }
data/CHANGELOG.md CHANGED
@@ -5,6 +5,33 @@
5
5
 
6
6
  # Change Log
7
7
 
8
+ ## [3.1.1](https://github.com/ruby-git/ruby-git/compare/v3.1.0...v3.1.1) (2025-07-02)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * Raise a Git::FailedError if depth < 0 is passed to Git.clone ([803253e](https://github.com/ruby-git/ruby-git/commit/803253ea2dd2b69b099c0d1919b03ac65c800264)), closes [#805](https://github.com/ruby-git/ruby-git/issues/805)
14
+
15
+
16
+ ### Other Changes
17
+
18
+ * Announce default branch change in README ([e04f08e](https://github.com/ruby-git/ruby-git/commit/e04f08e202ae54286033b4d0a75c47f124bd63e2))
19
+ * Update the project's default branch from 'master' to 'main' ([a5aa75f](https://github.com/ruby-git/ruby-git/commit/a5aa75fd04a71cd8236b8c8481a067c0a47b24b9))
20
+
21
+ ## [3.1.0](https://github.com/ruby-git/ruby-git/compare/v3.0.2...v3.1.0) (2025-05-18)
22
+
23
+
24
+ ### Features
25
+
26
+ * Make Git::Log support the git log --merges option ([df3b07d](https://github.com/ruby-git/ruby-git/commit/df3b07d0f14d79c6c77edc04550c1ad0207c920a))
27
+
28
+
29
+ ### Other Changes
30
+
31
+ * Announce and document guidelines for using Conventional Commits ([a832259](https://github.com/ruby-git/ruby-git/commit/a832259314aa9c8bdd7719e50d425917df1df831))
32
+ * Skip continuous integration workflow for release PRs ([f647a18](https://github.com/ruby-git/ruby-git/commit/f647a18c8a3ae78f49c8cd485db4660aa10a92fc))
33
+ * Skip the experiemental build workflow if a release commit is pushed to master ([3dab0b3](https://github.com/ruby-git/ruby-git/commit/3dab0b34e41393a43437c53a53b96895fd3d2cc5))
34
+
8
35
  ## [3.0.2](https://github.com/ruby-git/ruby-git/compare/v3.0.1...v3.0.2) (2025-05-15)
9
36
 
10
37
 
data/CONTRIBUTING.md CHANGED
@@ -18,6 +18,8 @@
18
18
  - [Output processing](#output-processing)
19
19
  - [Coding standards](#coding-standards)
20
20
  - [Commit message guidelines](#commit-message-guidelines)
21
+ - [What does this mean for contributors?](#what-does-this-mean-for-contributors)
22
+ - [What to know about Conventional Commits](#what-to-know-about-conventional-commits)
21
23
  - [Unit tests](#unit-tests)
22
24
  - [Continuous integration](#continuous-integration)
23
25
  - [Documentation](#documentation)
@@ -63,7 +65,8 @@ thoroughly as possible to describe the issue or feature request.
63
65
  There is a three-step process for submitting code or documentation changes:
64
66
 
65
67
  1. [Commit your changes to a fork of
66
- `ruby-git`](#commit-your-changes-to-a-fork-of-ruby-git)
68
+ `ruby-git`](#commit-your-changes-to-a-fork-of-ruby-git) using [Conventional
69
+ Commits](#commit-message-guidelines)
67
70
  2. [Create a pull request](#create-a-pull-request)
68
71
  3. [Get your pull request reviewed](#get-your-pull-request-reviewed)
69
72
 
@@ -155,23 +158,81 @@ requirements:
155
158
 
156
159
  ### Commit message guidelines
157
160
 
158
- All commit messages must follow the [Conventional Commits
159
- standard](https://www.conventionalcommits.org/en/v1.0.0/). This helps us maintain a
160
- clear and structured commit history, automate versioning, and generate changelogs
161
- effectively.
161
+ To enhance our development workflow, enable automated changelog generation, and pave
162
+ the way for Continuous Delivery, the `ruby-git` project has adopted the [Conventional
163
+ Commits standard](https://www.conventionalcommits.org/en/v1.0.0/) for all commit
164
+ messages.
162
165
 
163
- To ensure compliance, this project includes:
166
+ This structured approach to commit messages allows us to:
164
167
 
165
- - A git commit-msg hook that validates your commit messages before they are accepted.
168
+ - **Automate versioning and releases:** Tools can now automatically determine the
169
+ semantic version bump (patch, minor, major) based on the types of commits merged.
170
+ - **Generate accurate changelogs:** We can automatically create and update a
171
+ `CHANGELOG.md` file, providing a clear history of changes for users and
172
+ contributors.
173
+ - **Improve commit history readability:** A standardized format makes it easier for
174
+ everyone to understand the nature of changes at a glance.
166
175
 
167
- To activate the hook, you must have node installed and run `bin/setup` or
168
- `npm install`.
176
+ #### What does this mean for contributors?
169
177
 
170
- - A GitHub Actions workflow that will enforce the Conventional Commit standard as
171
- part of the continuous integration pipeline.
178
+ Going forward, all commits to this repository **MUST** adhere to the [Conventional
179
+ Commits standard](https://www.conventionalcommits.org/en/v1.0.0/). Commits not
180
+ adhering to this standard will cause the CI build to fail. PRs will not be merged if
181
+ they include non-conventional commits.
172
182
 
173
- Any commit message that does not conform to the Conventional Commits standard will
174
- cause the workflow to fail and not allow the PR to be merged.
183
+ A git pre-commit hook may be installed to validate your conventional commit messages
184
+ before pushing them to GitHub by running `bin/setup` in the project root.
185
+
186
+ #### What to know about Conventional Commits
187
+
188
+ The simplist conventional commit is in the form `type: description` where `type`
189
+ indicates the type of change and `description` is your usual commit message (with
190
+ some limitations).
191
+
192
+ - Types include: `feat`, `fix`, `docs`, `test`, `refactor`, and `chore`. See the full
193
+ list of types supported in [.commitlintrc.yml](.commitlintrc.yml).
194
+ - The description must (1) not start with an upper case letter, (2) be no more than
195
+ 100 characters, and (3) not end with punctuation.
196
+
197
+ Examples of valid commits:
198
+
199
+ - `feat: add the --merges option to Git::Lib.log`
200
+ - `fix: exception thrown by Git::Lib.log when repo has no commits`
201
+ - `docs: add conventional commit announcement to README.md`
202
+
203
+ Commits that include breaking changes must include an exclaimation mark before the
204
+ colon:
205
+
206
+ - `feat!: removed Git::Base.commit_force`
207
+
208
+ The commit messages will drive how the version is incremented for each release:
209
+
210
+ - a release containing a **breaking change** will do a **major** version increment
211
+ - a release containing a **new feature** will do a **minor** increment
212
+ - a release containing **neither a breaking change nor a new feature** will do a
213
+ **patch** version increment
214
+
215
+ The full conventional commit format is:
216
+
217
+ ```text
218
+ <type>[optional scope][!]: <description>
219
+
220
+ [optional body]
221
+
222
+ [optional footer(s)]
223
+ ```
224
+
225
+ - `optional body` may include multiple lines of descriptive text limited to 100 chars
226
+ each
227
+ - `optional footers` only uses `BREAKING CHANGE: <description>` where description
228
+ should describe the nature of the backward incompatibility.
229
+
230
+ Use of the `BREAKING CHANGE:` footer flags a backward incompatible change even if it
231
+ is not flagged with an exclaimation mark after the `type`. Other footers are allowed
232
+ by not acted upon.
233
+
234
+ See [the Conventional Commits
235
+ specification](https://www.conventionalcommits.org/en/v1.0.0/) for more details.
175
236
 
176
237
  ### Unit tests
177
238
 
data/README.md CHANGED
@@ -8,18 +8,44 @@
8
8
  [![Gem Version](https://badge.fury.io/rb/git.svg)](https://badge.fury.io/rb/git)
9
9
  [![Documentation](https://img.shields.io/badge/Documentation-Latest-green)](https://rubydoc.info/gems/git/)
10
10
  [![Change Log](https://img.shields.io/badge/CHANGELOG-Latest-green)](https://rubydoc.info/gems/git/file/CHANGELOG.md)
11
- [![Build Status](https://github.com/ruby-git/ruby-git/workflows/CI/badge.svg?branch=master)](https://github.com/ruby-git/ruby-git/actions?query=workflow%3ACI)
12
- [![Code Climate](https://codeclimate.com/github/ruby-git/ruby-git.png)](https://codeclimate.com/github/ruby-git/ruby-git)
13
-
14
- * [Summary](#summary)
15
- * [v2.x Release](#v2x-release)
16
- * [Install](#install)
17
- * [Major Objects](#major-objects)
18
- * [Errors Raised By This Gem](#errors-raised-by-this-gem)
19
- * [Specifying And Handling Timeouts](#specifying-and-handling-timeouts)
20
- * [Examples](#examples)
21
- * [Ruby version support policy](#ruby-version-support-policy)
22
- * [License](#license)
11
+ [![Build Status](https://github.com/ruby-git/ruby-git/workflows/CI/badge.svg?branch=main)](https://github.com/ruby-git/ruby-git/actions?query=workflow%3ACI)
12
+ [![Conventional Commits](https://img.shields.io/badge/Conventional%20Commits-1.0.0-%23FE5196?logo=conventionalcommits&logoColor=white)](https://conventionalcommits.org)
13
+
14
+ - [📢 Default Branch Rename 📢](#-default-branch-rename-)
15
+ - [📢 We've Switched to Conventional Commits 📢](#-weve-switched-to-conventional-commits-)
16
+ - [Summary](#summary)
17
+ - [Install](#install)
18
+ - [Major Objects](#major-objects)
19
+ - [Errors Raised By This Gem](#errors-raised-by-this-gem)
20
+ - [Specifying And Handling Timeouts](#specifying-and-handling-timeouts)
21
+ - [Examples](#examples)
22
+ - [Ruby version support policy](#ruby-version-support-policy)
23
+ - [License](#license)
24
+
25
+ ## 📢 Default Branch Rename 📢
26
+
27
+ On June 6th, 2025, the default branch was renamed from 'master' to 'main'.
28
+
29
+ Instructions for renaming your local or forked branch to match can be found in the
30
+ gist [Default Branch Name
31
+ Change](https://gist.github.com/jcouball/580a10e395f7fdfaaa4297bbe816cc7d).
32
+
33
+ ## 📢 We've Switched to Conventional Commits 📢
34
+
35
+ To enhance our development workflow, enable automated changelog generation, and pave
36
+ the way for Continuous Delivery, the `ruby-git` project has adopted the [Conventional
37
+ Commits standard](https://www.conventionalcommits.org/en/v1.0.0/) for all commit
38
+ messages.
39
+
40
+ Going forward, all commits to this repository **MUST** adhere to the Conventional
41
+ Commits standard. Commits not adhering to this standard will cause the CI build to
42
+ fail. PRs will not be merged if they include non-conventional commits.
43
+
44
+ A git pre-commit hook may be installed to validate your conventional commit messages
45
+ before pushing them to GitHub by running `bin/setup` in the project root.
46
+
47
+ Read more about this change in the [Commit Message Guidelines section of
48
+ CONTRIBUTING.md](CONTRIBUTING.md#commit-message-guidelines)
23
49
 
24
50
  ## Summary
25
51
 
@@ -34,31 +60,6 @@ Get started by obtaining a repository object by:
34
60
 
35
61
  Methods that can be called on a repository object are documented in [Git::Base](https://rubydoc.info/gems/git/Git/Base)
36
62
 
37
- ## v2.x Release
38
-
39
- git 2.0.0 has recently been released. Please give it a try.
40
-
41
- **If you have problems with the 2.x release, open an issue and use the 1.x version
42
- instead.** We will do our best to fix your issues in a timely fashion.
43
-
44
- **JRuby on Windows is not yet supported by the 2.x release line. Users running JRuby
45
- on Windows should continue to use the 1.x release line.**
46
-
47
- The changes in this major release include:
48
-
49
- * Added a dependency on the activesupport gem to use the deprecation functionality
50
- * Create a policy of supported Ruby versions to support only non-EOL Ruby versions
51
- * Create a policy of supported Git CLI versions (released 2020-12-25)
52
- * Update the required Ruby version to at least 3.0 (released 2020-07-27)
53
- * Update the required Git command line version to at least 2.28
54
- * Update how CLI commands are called to use the [process_executer](https://github.com/main-branch/process_executer)
55
- gem which is built on top of [Kernel.spawn](https://ruby-doc.org/3.3.0/Kernel.html#method-i-spawn).
56
- See [PR #684](https://github.com/ruby-git/ruby-git/pull/684) for more details
57
- on the motivation for this implementation.
58
-
59
- The `master` branch will be used for `2.x` development. If needed, fixes for `1.x`
60
- version will be done on the `v1` branch.
61
-
62
63
  ## Install
63
64
 
64
65
  Install the gem and add to the application's Gemfile by executing:
@@ -283,8 +284,8 @@ g.branches # returns Git::Branch objects
283
284
  g.branches.local
284
285
  g.current_branch
285
286
  g.branches.remote
286
- g.branches[:master].gcommit
287
- g.branches['origin/master'].gcommit
287
+ g.branches[:main].gcommit
288
+ g.branches['origin/main'].gcommit
288
289
 
289
290
  g.grep('hello') # implies HEAD
290
291
  g.blob('v2.5:Makefile').grep('hello')
@@ -341,7 +342,7 @@ Git.ls_remote('https://github.com/ruby-git/ruby-git.git') # returns a hash conta
341
342
  Git.ls_remote('/path/to/local/repo')
342
343
  Git.ls_remote() # same as Git.ls_remote('.')
343
344
 
344
- Git.default_branch('https://github.com/ruby-git/ruby-git') #=> 'master'
345
+ Git.default_branch('https://github.com/ruby-git/ruby-git') #=> 'main'
345
346
  ```
346
347
 
347
348
  And here are the operations that will need to write to your git repository.
@@ -414,13 +415,13 @@ g.branch('new_branch') # creates new or fetches existing
414
415
  g.branch('new_branch').checkout
415
416
  g.branch('new_branch').delete
416
417
  g.branch('existing_branch').checkout
417
- g.branch('master').contains?('existing_branch')
418
+ g.branch('main').contains?('existing_branch')
418
419
 
419
420
  # delete remote branch
420
421
  g.push('origin', 'remote_branch_name', force: true, delete: true)
421
422
 
422
423
  g.checkout('new_branch')
423
- g.checkout('new_branch', new_branch: true, start_point: 'master')
424
+ g.checkout('new_branch', new_branch: true, start_point: 'main')
424
425
  g.checkout(g.branch('new_branch'))
425
426
 
426
427
  g.branch(name).merge(branch2)
@@ -430,7 +431,7 @@ g.branch(name).in_branch(message) { # add files } # auto-commits
430
431
  g.merge('new_branch')
431
432
  g.merge('new_branch', 'merge commit message', no_ff: true)
432
433
  g.merge('origin/remote_branch')
433
- g.merge(g.branch('master'))
434
+ g.merge(g.branch('main'))
434
435
  g.merge([branch1, branch2])
435
436
 
436
437
  g.merge_base('branch1', 'branch2')
data/lib/git/lib.rb CHANGED
@@ -126,7 +126,7 @@ module Git
126
126
  arr_opts = []
127
127
  arr_opts << '--bare' if opts[:bare]
128
128
  arr_opts << '--branch' << opts[:branch] if opts[:branch]
129
- arr_opts << '--depth' << opts[:depth].to_i if opts[:depth] && opts[:depth].to_i > 0
129
+ arr_opts << '--depth' << opts[:depth].to_i if opts[:depth]
130
130
  arr_opts << '--filter' << opts[:filter] if opts[:filter]
131
131
  Array(opts[:config]).each { |c| arr_opts << '--config' << c }
132
132
  arr_opts << '--origin' << opts[:remote] || opts[:origin] if opts[:remote] || opts[:origin]
@@ -294,6 +294,7 @@ module Git
294
294
  # * 'tree' [String] the tree sha
295
295
  # * 'author' [String] the author of the commit and timestamp of when the changes were created
296
296
  # * 'committer' [String] the committer of the commit and timestamp of when the commit was applied
297
+ # * 'merges' [Boolean] if truthy, only include merge commits (aka commits with 2 or more parents)
297
298
  #
298
299
  # @raise [ArgumentError] if the revision range (specified with :between or :object) is a string starting with a hyphen
299
300
  #
@@ -305,6 +306,7 @@ module Git
305
306
 
306
307
  arr_opts << '--pretty=raw'
307
308
  arr_opts << "--skip=#{opts[:skip]}" if opts[:skip]
309
+ arr_opts << '--merges' if opts[:merges]
308
310
 
309
311
  arr_opts += log_path_options(opts)
310
312
 
data/lib/git/log.rb CHANGED
@@ -133,11 +133,16 @@ module Git
133
133
  return self
134
134
  end
135
135
 
136
+ def merges
137
+ dirty_log
138
+ @merges = true
139
+ return self
140
+ end
141
+
136
142
  def to_s
137
143
  self.map { |c| c.to_s }.join("\n")
138
144
  end
139
145
 
140
-
141
146
  # forces git log to run
142
147
 
143
148
  def size
@@ -184,7 +189,7 @@ module Git
184
189
  log = @base.lib.full_log_commits(
185
190
  count: @max_count, all: @all, object: @object, path_limiter: @path, since: @since,
186
191
  author: @author, grep: @grep, skip: @skip, until: @until, between: @between,
187
- cherry: @cherry
192
+ cherry: @cherry, merges: @merges
188
193
  )
189
194
  @commits = log.map { |c| Git::Object::Commit.new(@base, c['sha'], c) }
190
195
  end
data/lib/git/version.rb CHANGED
@@ -3,5 +3,5 @@
3
3
  module Git
4
4
  # The current gem version
5
5
  # @return [String] the current gem version.
6
- VERSION='3.0.2'
6
+ VERSION='3.1.1'
7
7
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: git
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.2
4
+ version: 3.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Scott Chacon and others
@@ -248,8 +248,8 @@ licenses:
248
248
  metadata:
249
249
  homepage_uri: http://github.com/ruby-git/ruby-git
250
250
  source_code_uri: http://github.com/ruby-git/ruby-git
251
- changelog_uri: https://rubydoc.info/gems/git/3.0.2/file/CHANGELOG.md
252
- documentation_uri: https://rubydoc.info/gems/git/3.0.2
251
+ changelog_uri: https://rubydoc.info/gems/git/3.1.1/file/CHANGELOG.md
252
+ documentation_uri: https://rubydoc.info/gems/git/3.1.1
253
253
  rdoc_options: []
254
254
  require_paths:
255
255
  - lib