Git
Git
Git
git-new-workdir
Update 2015-07-29 The git-new-workdir script has been superseded by the git-worktree command added in Git 2.5. The post below is for historical reference. The git.git Repo has a little folder inside it called contrib. It's a place for everything that a Git user might find useful, but (for
Git
git add --patch and --interactive
One of the things that is pretty much unique to Git is the index (also known as the cache or staging area). The index is the place where you prepare your next commit. In other systems whenever you make a commit, all the changes you made in your working copy
Git
Subtree merging and you
If you're using Git, you're probably aware of submodules. They're useful when you want to integrate and track another Git repository into your own. But there are two other options at your disposal. The first one is to simply merge the other repository. This works fine as long as there