I want to save and share a git repo with everything in it, including the current reflog
state. Is the best way to do this just to zip up the .git
directory? Or could there be a better way?
Best way to export a git repo and include reflog
231 views Asked by willoller At
1
You can always use
git bundle
for this purpose.How to create git bundle?
Or choose other flags as well instead of the
--all
--branches[=<pattern>]
--tags[=<pattern>]