Skip to content

Commit 0f9fb05

Browse files
authored
Make wording in refs.asc clearer
When reading this line I was very confused. It didn't sound like it made sense. So I checked out a remote ref, ran `cat .git/HEAD`, and lo and behold it did "point" to the same thing that the remote branch pointed to. I played around with it a little bit more and realized the difference between checking out a local and remote reference is that checking out a local reference sets `.git/HEAD` to a SYMBOLIC ref, while checking out a remote reference sets it to the exact commit. I think the current language is *technically* correct, because "Git won't point HEAD at one" means it won't point HEAD to the remote reference itself (since "one" means the remote reference, not the commit). So I'm not saying the current wording is bad, just that it confused me, so it might confuse others
1 parent 1a2bf79 commit 0f9fb05

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

book/10-git-internals/sections/refs.asc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,5 +205,5 @@ ca82a6dff817ec66f44342007202690a93763949
205205
----
206206

207207
Remote references differ from branches (`refs/heads` references) mainly in that they're considered read-only.
208-
You can `git checkout` to one, but Git won't point HEAD at one, so you'll never update it with a `commit` command.
208+
You can `git checkout` to one, but Git won't symolically reference HEAD to one, so you'll never update it with a `commit` command.
209209
Git manages them as bookmarks to the last known state of where those branches were on those servers.

0 commit comments

Comments
 (0)