On Mon, 14 Apr 2014 09:53:56 -0700 (PDT) [email protected] wrote: > I'm trying to checkout a specific file from GIT using Jenkins, I > didn't any way how to get a specific file form GIT.
Impossible. The best you can get is to do a shallow clone (see the description of the "--depth" command-line option of `git clone`) and after performing it get the contents of a single file using the `git show` command like this: git show HEAD:path/to/that/file > file/name/on/the/filesystem [...] P.S. Please refrain from including "very urgent" in the subjects of the mails you compose in the future -- many people will delete them without even bothering to open. -- You received this message because you are subscribed to the Google Groups "Git for human beings" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
