Export all commits into ZIP files or directories
问题 How is it possible to export all commits into ZIP files (containing all files , not only patch/diff): myproject-commit1-67d91ab.zip myproject-commit2-9283acd.zip myproject-commit3-c57daa6.zip ... or into directories: myproject-commit1-67d91ab/ myproject-commit2-9283acd/ myproject-commit3-c57daa6/ ? I was thinking about commands like: git archive --format zip --output myproject-commit3.zip c57daa6 from How do I export a specific commit with git-archive?, but how to get all commits ? Notes: the