"armencho@xxxxxxxxx" <armencho@xxxxxxxxx> writes: > What I am wondering about is, what is gits identity for a repository? > I don't share or publish the source directory anywhere, and just for > testing I removed everything but the ".git" directory and tried "git > checkout" and "git checkout master". "git checkout" is a short-hand for "git checkout HEAD" which is to request "switch to the branch denoted by HEAD, i.e. the current branch, while keeping my local changes to the work tree and the index". "git checkout master" is a request to "switch to the master branch, while keeping my local changes to the work tree and the index". In this case, your "delete everything" is your local change, and git did its best to preserve it while switching branches. If you want to "copy this and that files and directories out of the commit at the tip of the current branch and deposit them in my work tree and index", you would say $ git checkout HEAD this that so a request for checking everything out would be a natural extension of the above that would be: $ git checkout HEAD . If you want to "copy this and that files and directories out of the index and deposit them in my work tree", you would say $ git checkout this that -- 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