Jeff King <peff@xxxxxxxx> writes: > On Fri, Apr 11, 2014 at 01:24:02AM -0700, Kyle J. McKay wrote: > >> Since 11502468 and 04c1ee57 (both first appearing in v1.8.5), the >> t7001-mv test has used "cp -a" to perform a copy in several of the >> tests. >> >> However, the "-a" option is not required for a POSIX cp utility and >> some platforms' cp utilities do not support it. >> >> The POSIX equivalent of -a is -R -P -p. >> >> Change "cp -a" to "cp -R -P -p" so that the t7001-mv test works >> on systems with a cp utility that only implements the POSIX >> required set of options and not the "-a" option. > > I wonder if the "-R" is the part that we actually care about here. > Including the others does not hurt in that case, but using only "-R" > would perhaps make it more obvious to a later reader of the code exactly > what we are trying to do. These calls to "cp" are about "We know that earlier 'update' created the GIT_DIR of the submodule in the top-level superproject, because we are running a modern Git. But we want to make sure the command we are testing, "git mv", would work correctly if the repository were made with an older Git that created the GIT_DIR embedded in the working tree of the submodule, so let's emulate that case." As we create files and directories in GIT_DIR with explicit permission bits, we may care about (1) making sure "git mv" can actually move the directory, with some paths having mode bits different from the umasked default; and (2) checking that the GIT_DIR after "git mv" has the permission bits right. and if we cared, "-R -p" would be required here, not just "-R". If core.prefersymlinkrefs is set, GIT_DIR would have a symbolic link HEAD pointing at the current branch, and "-P" may become relevant, but manually running "cp -R .git git && ls -l git/HEAD" in such an old repository tells me that symbolic link HEAD is not dereferenced without an explicit "-L", so I dunno. Because we do not check anything inside GIT_DIR of the moved submodule after "git mv" is done, the more correct use of "cp" is moot for the purpose of (2), but it could be possible that "git mv" fails to move a submodule with GIT_DIR created embedded in its working tree by an older version of Git, while successfully copying an emulated one, due to differences such as modes and symlinks. The current implementation just does rename(2) on the whole submodule working tree and let its contents move together, so I do not think it matters at the moment for the purpose of (1); use of flags other than "-R" are purely for future-proofing, I would think. -- 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