On Tue, Sep 11, 2018 at 6:47 PM Junio C Hamano wrote:
>
> Jonathan Tan writes:
>
> > By "without any objects" in your email subject, do you mean "without
> > blob and tree objects"? If yes, there is some code in the
> > md/filter-trees branch that can do that with a "--filter=tree:0"
> > option.
At v2.19.0 I was trying to clone a fetch just a single directory:
https://stackoverflow.com/questions/600079/how-do-i-clone-a-subdirectory-only-of-a-git-repository/52269934#52269934
I got really close with:
git clone --depth 1 --no-checkout --filter=blob:none \
"file://$(pwd)/server_repo" local
I have a git repo with large submodules, notably the Linux kernel, and
shallow clone saves a lot of time.
However, QEMU is also a submodule, which I don't control, and QEMU has
submodules which don't point to commits that are not on any tag or
branch, so:
git clone --recurse-submodules --shallow
This is a must if you are working with submodules, otherwise every git
checkout requires a git submodule update, and you forget it, and
things break, and you understand, and you go to stack overflow
questions
http://stackoverflow.com/questions/22328053/why-doesnt-git-checkout-automatically-do-git-
On Sat, Oct 18, 2014 at 4:49 PM, Andreas Krey wrote:
> On Fri, 17 Oct 2014 13:25:42 +0000, Ciro Santilli wrote:
> ...
>> The problem is that the `/usr/bin` breaks "interpreter version manager
>> systems" like RVM, rbenv, virtualenv, etc. since people will write
>>
On hooks Git automatically prepends to the `PATH` via the `setup_path` function:
- `git --exec-path` (`/usr/lib/git-core`)
- the directory of `$0` (`/usr/bin`) if you call it with the full path
The problem is that the `/usr/bin` breaks "interpreter version manager
systems" like RVM, rbenv, virtua
remove it: it is already easy to get a list of
extensions by browsing the headers in the "Extensions" section.
Signed-off-by: Ciro Santilli
---
Documentation/technical/index-format.txt | 2 --
1 file changed, 2 deletions(-)
diff --git a/Documentation/technical/index-format.txt
b/Docum
7 matches
Mail list logo