...

/

Detached Heads

Detached Heads

Learn how you can switch between different commits either in the same branch or across branches.

Sometimes when using Git you might have seen something like this:

	git status
	HEAD detached at 76d43b6

Detaching

The HEAD pointer can be moved to an arbitrary point. In fact, git checkout does exactly this. You can specify a reference (like master or newfeature) or a specific commit ID.

The ...