The --depth 1 option in git clone:

Create a shallow clone with a history truncated to the specified number of revisions. A shallow repository has a number of limitations (you cannot clone or fetch from it, nor push from nor into it), but is adequate if you are only interested in the recent history of a large project with a long history, and would want to send in fixes as patches.

But I've successfully done a shallow clone, committed some changes and pushed those changes back to the (bare clone) origin.

I makes sense to me - I mean why not? when the cloned HEAD is identifiable in the origin, and my commit comes on top of this, there seems no reason. But the manual says otherwise.

I like the idea of shallow clone - e.g. of drupal core: there's no way I need to know what went on in drupal 4 when I've started from 7. - but I don't want to shoot myself in the foot.

So is it safe to shallow clone, develop commits in it, pull again to keep up with updates from origin?

link|improve this question
2  
Here was a decent discussion on clone depth – Andy Aug 4 '11 at 14:12
Yes, I'd read that too, thanks Andy. the --orphan concept seems similar and I intend to have a play. Still bit unnerved that the docs don't match the reality [because who's to say the docs for --orphan are correct?!] – artfulrobot Aug 4 '11 at 19:37
Found another great discussion of working with a truncated history. But it doesn't help me. – artfulrobot Aug 5 '11 at 11:02
feedback

1 Answer

See some of the answers to my similar question why-cant-i-push-from-a-shallow-clone and the link to the recent thread on the git list.

Ultimately, the 'depth' measurement isn't consistent between repos, because they measure from their individual HEADs, rather than (a) your Head, or (b) the commit(s) you cloned/fetched, or (c) something else you had in mind.

The hard bit is getting one's Use Case right (i.e. self-consistent), so that distributed, and therefore probably divergent repos will still work happily together.

It does look like the checkout --orphan is the right 'set-up' stage, but still lacks clean (i.e. a simple understandable one line command) guidance on the "clone" step. Rather it looks like you have to init a repo, set up a remote tracking branch (you do want the one branch only?), and then fetch that single branch, which feels long winded with more opportunity for mistakes.

Edit: For the 'clone' step see enter link description here

link|improve this answer
Tanks Philip. Fetching a remote branch will still pull in the entire history (AFAIK). You're right about relative depths, really I want some suitable point in history (like git merge-base 7.x 7.0 in my case) – artfulrobot Aug 5 '11 at 11:00
@artfulrobot: the '--orphan' method allows you to create a short narrow 'clone' (i.e. a focussed segment) and then use it as if it was a proper repo. It's something I haven't tried in anger yet but it's something I need to prove soon. – Philip Oakley Aug 6 '11 at 17:53
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.