Why can't I git bundle all parents?
问题 I'm trying to create a git bundle with only partial history. The command I run to bundle the entire branch is. (reference) git bundle create my.bundle --all However if I want to only bundle the initial commit up to (not including) a specific commit the correct rev-parse syntax is. (reference) git bundle create my.bundle dae86e1950b1277e545cee180551750029cfe735^@ But this fails and git says... fatal: Refusing to create empty bundle. How do I create bundle with only the initial-commit and all