On 4 May 2011 21:17, Mikhail T. <mi+thun@xxxxxxxxxxxxxxxxx> wrote: > On 04.05.2011 14:22, Johannes Sixt wrote: > > > > You just cp the file and git add it. But you will not be able to > > follow a history of the file. > > Thank you for the information... > > So, is this something worth adding to the wishlist, or was it omitted > on purpose (and which purpose was that, then)? Oh yes, that was intentional. This is easily one of the most debated "features" of Git, especially in the early days of Git when almost all SCM systems did it "the CVS way", by tracking the history of single files. Instead, Git tracks snapshots of the whole tree and focuses on the whole content instead of single files. Renames are tracked by detecting removal/adding of files, which can be detected later, for example using "git log --follow". The reason for this is mostly speed issues, and most of the time the history of a single file is not interesting in a project, but changes in the file tree as a whole. >From the FAQ at <https://git.wiki.kernel.org/index.php/GitFaq>: Git has to interoperate with a lot of different workflows, for example some changes can come from patches, where rename information may not be available. Relying on explicit rename tracking makes it impossible to merge two trees that have done exactly the same thing, except one did it as a patch (create/delete) and one did it using some other heuristic. On a second note, tracking renames is really just a special case of tracking how content moves in the tree. In some cases, you may instead be interested in querying when a function was added or moved to a different file. By only relying on the ability to recreate this information when needed, Git aims to provide a more flexible way to track how your tree is changing. However, this does not mean that Git has no support for renames. The diff machinery in Git has support for automatically detecting renames, this is turned on by the '-M' switch to the git-diff-* family of commands. The rename detection machinery is used by git-log(1) and git-whatchanged(1), so for example, 'git log -M' will give the commit history with rename information. Git also supports a limited form of merging across renames. The two tools for assigning blame, git-blame(1) and git-annotate(1) both use the automatic rename detection code to track renames. As a very special case, 'git log' version 1.5.3 and later has '--follow' option that allows you to follow renames when given a single path. Git has a rename command git mv, but that is just for convenience. The effect is indistinguishable from removing the file and adding another with different name and the same content. This mail from Linus explains the issue in more detail and colour: <http://permalink.gmane.org/gmane.comp.version-control.git/217>. Regards, Ãyvind -- 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