You must log in or # to comment.
I think in most cases you want the dependencies between commits that darcs removes. For instance, let’s say you have three patches:
- Create
hello.sh
withecho Hello World
- Create
lib.sh
withhello() {echo Hello World}
- Edit
hello.sh
tosource lib.sh; hello
Of course, in this case it would be easy to manually specify the dependency (3 depends on 2) and unlike git 2 wouldn’t have to depend on 1. But for a larger project I’m imagining always having to look at the current path set to figure out dependencies and the git model of “every commit depends on the patch before” seems better for large codebases.
But I could be wrong. I’d be curious to see what a large darcs repo looks like.
- Create