fabacab / git-archive-all.sh

A bash shell script wrapper for git-archive that archives a git superproject and its submodules, if it has any.
214 stars 86 forks source link

tar.gz #17

Closed fwilly closed 10 years ago

fwilly commented 10 years ago

Only tar and zip is supported. git archive supports also tar.gz

fwilly commented 10 years ago

diff --git a/git-archive-all.sh b/git-archive-all.sh index 82df936..220735a 100755 --- a/git-archive-all.sh +++ b/git-archive-all.sh @@ -238,7 +238,17 @@ if [ $VERBOSE -eq 1 ]; then fi

Concatenate archives into a super-archive.

if [ $SEPARATE -eq 0 ]; then

fabacab commented 10 years ago

Cool. Please create a pull request to suggest this patch be merged.