git@vger.kernel.org mailing list mirror (one of many)
 help / color / mirror / code / Atom feed
* [Q] How to check git features for compatability?
@ 2021-11-01 14:11 Dominik
  2021-11-01 14:20 ` Ævar Arnfjörð Bjarmason
  0 siblings, 1 reply; 2+ messages in thread
From: Dominik @ 2021-11-01 14:11 UTC (permalink / raw)
  To: git

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?)

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [Q] How to check git features for compatability?
  2021-11-01 14:11 [Q] How to check git features for compatability? Dominik
@ 2021-11-01 14:20 ` Ævar Arnfjörð Bjarmason
  0 siblings, 0 replies; 2+ messages in thread
From: Ævar Arnfjörð Bjarmason @ 2021-11-01 14:20 UTC (permalink / raw)
  To: Dominik; +Cc: git


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.

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2021-11-01 14:26 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-11-01 14:11 [Q] How to check git features for compatability? Dominik
2021-11-01 14:20 ` Ævar Arnfjörð Bjarmason

Code repositories for project(s) associated with this public inbox

	https://80x24.org/mirrors/git.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).