From 979144d0e490c3f130f430e99154e3d2ce063d94 Mon Sep 17 00:00:00 2001 From: Indrajit Raychaudhuri Date: Mon, 17 May 2021 15:07:12 -0500 Subject: [PATCH] git: Update minimum required git version to 2.11 Git 2.11+ has more versatile `submodule`, `fetch`, `rebase` options for common use-cases. --- modules/git/README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/modules/git/README.md b/modules/git/README.md index 84fc859..fad57a1 100644 --- a/modules/git/README.md +++ b/modules/git/README.md @@ -7,7 +7,8 @@ This module must be loaded _before_ the [_`completion`_][13] module so that the provided completion definitions are loaded automatically by _`completion`_ module. -**Note:** Git **1.7.2** is the [minimum required version][7]. +**Note:** Git **2.11** is the minimum required version for better +[git-rev-list][7] and [git-submodule][14] support. ## Settings @@ -460,3 +461,4 @@ _The authors of this module should be contacted via the [issue tracker][6]._ [11]: https://www.manpagez.com/man/1/gm/ [12]: https://github.blog/2011-11-10-git-io-github-url-shortener [13]: ../completion#readme +[14]: https://github.com/sorin-ionescu/prezto/pull/1929