Pascal Obry <pascal@xxxxxxxx> writes: > Starting a new project I create a new repo and added some files for the > initial revision of the project, something like: > > mkdir repo.git > cd repo.git > git init > touch file > git add file > git ci -m "initial revision" > > Now one file was not meant to be committed, I wanted to revert this commit: That's not even an revert. Can't you simply amend it away? $ git rm not-this-file $ git commit --amend -- 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