I am in the process of "documenting in hind-sight" the history of an application development, by moving existing snapshots of the project's directory tree (that were saved back then by plain & primitive folder copies, not git or any other version control) to git.
After struggling with learning git's new concepts and new terminology, this migration process seemed to have been going well when, all of a sudden I discovered: "Oops... my last git commit + git branch <branchname> skipped one snapshot."
Since the order of committing the snapshots is important to me, I would like to completely undo the last git commit + git branch <branchname>, as if it were never done.
That is, "fixing by modifying a commit" as defined at the bottom of the Undoing in Git chapter in the Git book.
Everything is still local (I didn't "publish" nor did I "push" anything yet), so I believe this is in line with the warnings about "rewriting history". :)
Could you please confirm or correct the following steps required per my understanding?
- Empty the working directory (without
deleting the
.gitsubdirectory, of course) git checkout <folder-name>(bringing working directory back to the state it were immediately after I committed the wrong folder and tagged it via git branch)git branch -D <branchname-of-mistaken-folder-commit>git commit --amend
At this point I expect that git to no longer remember that the last branch and commit have ever been done, and the working directory contain the mistaken folder (which I will be deleting, replacing completely by the one I skipped). Is this correct?
git tag. – svick Jul 9 '11 at 17:00CVS tag-ing them. The goal is to give each such commit a name so that I can identify it with the name of the snapshot I gave it back then. I don't think I will ever branch-off an older branch but so far, this has been working great for me. I am always happy to learn a better way, however. +1. – WinWin Jul 9 '11 at 17:19