Re: git-bpush: Pushing to a bundle
From: Johannes Schindelin <hidden>
Date: 2016-06-15 22:45:45
Hi, On Tue, 9 Dec 2008, Santi Béjar wrote:
The basic idea is: - Easily create bundles with the current branch. - Be able to push to defined bundles in remote.<remote>.url - Only add new objects by default (do not lose objects)
That is probably not what people need. Usually, when bundles are sent around, you need _incremental_ bundles. IOW if you already have a bundle, you want to create a new bundle that contains everything that is new, _in addition_ to the existing bundle.
while [ $# != 0 ] ; do
Heh, I did not realize just how _used_ I got to the conventions in Git's shell programming, until I thought "Should this not use 'test' instead of brackets?"
while [ $# != 0 ] ; do
refs="$refs$LF$1" && shift
doneThat is equivalent to refs="$*", no? Anyway, I found reading your shell script quite hard, because of excessive use of brackets and single line && chains (which lack proper error handling, BTW). Ciao, Dscho