Hi,
Scenario: I want to offer a simple utility that (among other things)
automatically checks out git repositories. For that I want to use a
specific feature (that is `git clone --branch`).
Problem: Some user might have an old version of git where `git clone
--branch` is not supported at all, or not supported in the same way.
Q: How do I check which features which git version has? I fail to find
the (rather commonly seen) `changelog.md` on the official git
repository. Where should I look for a complete list? Is there a more
complete documentation that lists the "earliest supported version" or
some sort of "history of changes" for each of the git features, as is
commonly seen in the API documentation of other CLI tools (e.g.
https://nodejs.org/api/cli.html)?
(PS: First time user here. Let me know if this is how you participate
in this mailing list? I could not find any info on
question-asking-etiquette either?)
On Mon, Nov 01 2021, Dominik wrote:
Hi,
Scenario: I want to offer a simple utility that (among other things)
automatically checks out git repositories. For that I want to use a
specific feature (that is `git clone --branch`).
Problem: Some user might have an old version of git where `git clone
--branch` is not supported at all, or not supported in the same way.
Q: How do I check which features which git version has? I fail to find
the (rather commonly seen) `changelog.md` on the official git
repository. Where should I look for a complete list? Is there a more
complete documentation that lists the "earliest supported version" or
some sort of "history of changes" for each of the git features, as is
commonly seen in the API documentation of other CLI tools (e.g.
https://nodejs.org/api/cli.html)?
(PS: First time user here. Let me know if this is how you participate
in this mailing list? I could not find any info on
question-asking-etiquette either?)
In most cases, including this one, the best way to do this is to simply
run the command in question, and guard it with some wrapper that checks
for the 129 exit code. we'll emit that on usage errors:
$ git clone --unknown-future-flag 2>/dev/null; echo $?
129
If you're asking how you can find that without running a command like
that, the answer is that there really isn't a good way other than to
scour git.git's history. Even the release notes aren't always complete,
i.e. you'll find that there's options we've introduced that were never
explicitly mentioned in the release notes.
Even those that are are in human-readable prose, not anything machine
readable.
For "git clone --branch" specifically it seems to have been there since
2008 at least, so unless you're supporting some truly ancient
installations you shouldn't need to worry about it, but perhaps its
behavior changed in a way that I missed from a cursory look.