On Friday 03 March 2006 06:27, you wrote:
Pavel Roskin [off-list ref] writes:
quoted
- ARGS2["${#ARGS2[@]}"]="$_git_relpath${arg%/}"
+ ARGS2[${#ARGS2[@]}]="$_git_relpath${arg%/}"
Is this an application bug? It looks like a workaround for a
bug in the shell...
This line in cg-mv is needed to work around at least two
bugs in git-mv:
* "git-mv a/ b/" not working.
Fix was to strip all trailing slashes of args (fixed in 1.2.4)
* "cd subdir; git-mv ../file ."
Fix is to run git-mv from base directory (see separate patch for git-mv)
I think cg-mv should be able to be a direct wrapper for git-mv with
the next maintenance release.
Pasky: do you know of other problems with git-mv?
Josef