From: Eric Sunshine <sunshine@xxxxxxxxxxxxxx> > On Sun, Jun 1, 2014 at 11:10 AM, Christian Couder > <chriscool@xxxxxxxxxxxxx> wrote: >> >> +test -f "$GRAFTS_FILE" || die "Could not find graft file: '$GRAFTS_FILE'" >> + >> +grep '^[^# ]' "$GRAFTS_FILE" | while read definition >> +do >> + test -n "$definition" && { >> + echo "Converting: $definition" >> + git replace --graft $definition || >> + die "Convertion failed for: $definition" > > s/Convertion/Conversion/ [1] > > [1]: http://git.661346.n2.nabble.com/Re-PATCH-contrib-add-convert-grafts-to-replace-refs-sh-tp7611822.html Ooops, sorry I forgot this. >> + } >> +done >> + >> +mv "$GRAFTS_FILE" "$GRAFTS_FILE.bak" || >> + die "Could not mv '$GRAFTS_FILE' to '$GRAFTS_FILE.bak'" > > "Could not rename..." might be a bit more friendly to non-Unixy folk. Ok, I will use "rename". Thanks, Christian. -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html