I want to generate a bundle with git but for some important reason I need it on the standard output not in a file.
Is there a alternate command at git bundle to do this ?
I want to generate a bundle with git but for some important reason I
Share
Use
-as the file argument togit bundle:Note: as of git 2.17.0, the above commands works correctly only when invoked at the root directory of the working tree. (In other directories, a
-file is created andoutfileends up empty.)