From: Eric Sunshine <redacted>
On Sun, Jun 1, 2014 at 11:10 AM, Christian Couder
[off-list ref] wrote:
quoted
+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.
quoted
+ }
+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.