From: Eric Sunshine <sunsh...@sunshineco.com>

> On Sun, Jun 1, 2014 at 11:10 AM, Christian Couder
> <chrisc...@tuxfamily.org> 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 majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to