[git-users] Copyright on wildmatch.c

2015-02-24 Thread Guilherme
Hello, I'm trying to implement support for gitignore files in the_silver_searcher (https://github.com/ggreer/the_silver_searcher). It is a source code optimized version of grep. And it is way faster than ack. The problems at hand is that I'd like to use wildmatch.c and some dependencies (hex.c,

Re: [git-users] Copyright on wildmatch.c

2015-02-24 Thread Guilherme
Hi, quickly after posting to this mailing i realized that and sent a copy to the dev list. Thanks for the clarification. On Tue, Feb 24, 2015 at 1:55 PM, Konstantin Khomoutov flatw...@users.sourceforge.net wrote: On Tue, 24 Feb 2015 09:02:21 +0100 Guilherme guibuf...@gmail.com wrote: [...]

Re: [git-users] How to use git to store large files without keeping track of versions?

2015-02-24 Thread Konstantin Khomoutov
On Sun, 22 Feb 2015 07:51:59 -0800 (PST) pengyu...@gmail.com wrote: I have some data files that need to be stored along with source code. These data files are large, but I don't need to keep their versions. I only need to keep the versions of the source code. git-annex is mainly for large

Re: [git-users] How to use git to store large files without keeping track of versions?

2015-02-24 Thread Michael
So a common idiom is to put an object into the repository and then make a tag (usually annotated) pointing to it: $ git tag -a my-big-file $(git hash-object -w my-big-file) The `git hash-object -w` command will read the specified file, put it into the repo and print the SHA-1 hash

Fwd: [git-users] How to use git to store large files without keeping track of versions?

2015-02-24 Thread Peng Yu
I forget to send to the mailing list. -- Forwarded message -- From: Peng Yu pengyu...@gmail.com Date: Tue, Feb 24, 2015 at 12:05 PM Subject: Re: [git-users] How to use git to store large files without keeping track of versions? To: Konstantin Khomoutov

Re: [git-users] How to use git to store large files without keeping track of versions?

2015-02-24 Thread Dale R. Worley
This is so elegant, but: Konstantin Khomoutov flatw...@users.sourceforge.net writes: $ git cat-file my-big-file^{} /some/path/to/my-big-file I think you have to say git cat-file blob my-big-file^{} Dale -- You received this message because you are subscribed to the Google Groups Git