mirror of
https://github.com/tj/git-extras.git
synced 2026-09-10 07:26:17 -04:00
Version 7.3.0 (#1174)
Signed-off-by: spacewander <spacewanderlzx@gmail.com>
This commit is contained in:
parent
8eb1d72f07
commit
21a086c009
20
AUTHORS
20
AUTHORS
|
|
@ -1,12 +1,8 @@
|
|||
git-extras is written and maintained by TJ Holowaychuk and
|
||||
various contributors:
|
||||
|
||||
Development Lead
|
||||
````````````````
|
||||
- TJ Holowaychuk <tj@vision-media.ca>
|
||||
git-extras is written and maintained by various contributors:
|
||||
|
||||
Maintainers
|
||||
```````````
|
||||
- TJ Holowaychuk <tj@vision-media.ca>
|
||||
- Hemanth.HM <hemanth.hm@gmail.com>
|
||||
- Nimit Kalra <me@nimit.io>
|
||||
- Nicolai Skogheim <nicolai.skogheim@gmail.com>
|
||||
|
|
@ -37,6 +33,7 @@ Patches and Suggestions
|
|||
- David Baumgold
|
||||
- Jan Schulz
|
||||
- Kenneth Reitz
|
||||
- Leroy
|
||||
- Mark Pitman
|
||||
- Peter Benjamin
|
||||
- Günther Grill
|
||||
|
|
@ -49,6 +46,7 @@ Patches and Suggestions
|
|||
- Ross Smith II
|
||||
- Yi EungJun
|
||||
- grindhold
|
||||
- wyattscarpenter
|
||||
- Aggelos Orfanakos
|
||||
- Camille Reynders
|
||||
- Carlos Prado
|
||||
|
|
@ -70,6 +68,7 @@ Patches and Suggestions
|
|||
- Justin Dugger
|
||||
- Nils Winkler
|
||||
- Philipp Klose
|
||||
- Raphael Boidol
|
||||
- Richard Russon
|
||||
- Sam Bostock
|
||||
- Vladimir Jimenez
|
||||
|
|
@ -110,6 +109,7 @@ Patches and Suggestions
|
|||
- Wil Moore III
|
||||
- William Montgomery
|
||||
- Ye Lin Aung
|
||||
- dependabot[bot]
|
||||
- luozexuan
|
||||
- roxchgt
|
||||
- soffolk
|
||||
|
|
@ -146,6 +146,7 @@ Patches and Suggestions
|
|||
- Christophe Badoit
|
||||
- Ciro Nunes
|
||||
- CleanMachine1
|
||||
- CodeByZach
|
||||
- Craig MacGregor
|
||||
- Dan Goodliffe
|
||||
- Dan Jackson
|
||||
|
|
@ -174,6 +175,7 @@ Patches and Suggestions
|
|||
- James Manning
|
||||
- James Zhu
|
||||
- Jan Krueger
|
||||
- Jared Baur
|
||||
- Jarod Stewart
|
||||
- Jason Young
|
||||
- Jens K. Mueller
|
||||
|
|
@ -201,7 +203,9 @@ Patches and Suggestions
|
|||
- Mathieu D. (MatToufoutu)
|
||||
- Matt
|
||||
- Matt Colyer
|
||||
- Matt Headley
|
||||
- Matthew Avant
|
||||
- Mattias Andersson
|
||||
- Michael Komitee
|
||||
- Michael Matuzak
|
||||
- Michele Bologna
|
||||
|
|
@ -224,6 +228,7 @@ Patches and Suggestions
|
|||
- Raphael Fleischlin
|
||||
- Rasmus Wriedt Larsen
|
||||
- René
|
||||
- Revisor
|
||||
- Riceball LEE
|
||||
- Rob Kennedy
|
||||
- Robin von Bülow
|
||||
|
|
@ -254,6 +259,8 @@ Patches and Suggestions
|
|||
- Vitaly Chikunov
|
||||
- Wei Lee
|
||||
- Wei Wu
|
||||
- Wen Sun
|
||||
- Wiktor Żurawik
|
||||
- Xavier Krantz
|
||||
- Xiaopei Li
|
||||
- Zeeshan Ahmed
|
||||
|
|
@ -270,7 +277,6 @@ Patches and Suggestions
|
|||
- sgleizes
|
||||
- tfendin
|
||||
- tiemonl
|
||||
- Zachary Miller
|
||||
- zentarul
|
||||
- zeroDivisible
|
||||
- zhiyanfoo
|
||||
|
|
|
|||
24
History.md
24
History.md
|
|
@ -1,4 +1,28 @@
|
|||
|
||||
7.3.0 / 2024-10-20
|
||||
==================
|
||||
|
||||
* Fix stripping trailing forward slash for git-get (#1172)
|
||||
* Change git-cp to use cleaner branch approach (#1169)
|
||||
* Improve warning for `git clear` (#1168)
|
||||
* Enhance `git-repl` (#1160)
|
||||
* Update some documentation that was out of sync (#1164)
|
||||
* Use filetimes in check_integrity (#1162)
|
||||
* Update git-alias.md: add brs to prevent incorrect line behavior (#1161)
|
||||
* Update git-bulk.md: use correct stylization in synopsis (#1163)
|
||||
* Update git-repl.md: typo: "let's" for "lets" (#1158)
|
||||
* Update instructions for the OpenSUSE installation (#1157)
|
||||
* Add pathspec support in `git-missing` (#1156)
|
||||
* feat: add rename-file command (#1149)
|
||||
* Update Commands.md (#1148)
|
||||
* fix: git-summary commit count (#1147)
|
||||
* tests: update dependencies (#1142)
|
||||
* chore(deps): bump masesgroup/retrieve-changed-files from 2 to 3 (#1144)
|
||||
* chore(deps): bump actions/setup-go from 4 to 5 (#1143)
|
||||
* ci: add dependabot update for GitHub actions (#1141)
|
||||
* ci: update actions (#1140)
|
||||
* Bump version to 7.3.0-dev (#1139)
|
||||
|
||||
7.2.0 / 2024-04-21
|
||||
==================
|
||||
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
VERSION="7.3.0-dev"
|
||||
VERSION="7.3.0"
|
||||
INSTALL_SCRIPT="https://raw.githubusercontent.com/tj/git-extras/main/install.sh"
|
||||
|
||||
update() {
|
||||
|
|
|
|||
Loading…
Reference in a new issue