Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 1 | git-symbolic-ref(1) |
| 2 | =================== |
| 3 | |
| 4 | NAME |
| 5 | ---- |
Junio C Hamano | 7c73c66 | 2007-01-19 00:37:50 | [diff] [blame] | 6 | git-symbolic-ref - Read and modify symbolic refs |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 7 | |
| 8 | SYNOPSIS |
| 9 | -------- |
Junio C Hamano | 16cf158 | 2007-02-05 07:21:48 | [diff] [blame] | 10 | 'git-symbolic-ref' [-q] [-m <reason>] <name> [<ref>] |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 11 | |
| 12 | DESCRIPTION |
| 13 | ----------- |
| 14 | Given one argument, reads which branch head the given symbolic |
| 15 | ref refers to and outputs its path, relative to the `.git/` |
| 16 | directory. Typically you would give `HEAD` as the <name> |
| 17 | argument to see on which branch your working tree is on. |
| 18 | |
| 19 | Give two arguments, create or update a symbolic ref <name> to |
| 20 | point at the given branch <ref>. |
| 21 | |
Junio C Hamano | 735a4f7 | 2006-12-03 01:53:32 | [diff] [blame] | 22 | A symbolic ref is a regular file that stores a string that |
| 23 | begins with `ref: refs/`. For example, your `.git/HEAD` is |
| 24 | a regular file whose contents is `ref: refs/heads/master`. |
| 25 | |
Junio C Hamano | 97c11c5 | 2007-01-16 10:44:47 | [diff] [blame] | 26 | OPTIONS |
| 27 | ------- |
| 28 | |
Junio C Hamano | eb41599 | 2008-06-08 22:49:47 | [diff] [blame^] | 29 | -q:: |
| 30 | --quiet:: |
Junio C Hamano | 97c11c5 | 2007-01-16 10:44:47 | [diff] [blame] | 31 | Do not issue an error message if the <name> is not a |
| 32 | symbolic ref but a detached HEAD; instead exit with |
| 33 | non-zero status silently. |
| 34 | |
Junio C Hamano | 16cf158 | 2007-02-05 07:21:48 | [diff] [blame] | 35 | -m:: |
| 36 | Update the reflog for <name> with <reason>. This is valid only |
| 37 | when creating or updating a symbolic ref. |
| 38 | |
Junio C Hamano | 735a4f7 | 2006-12-03 01:53:32 | [diff] [blame] | 39 | NOTES |
| 40 | ----- |
| 41 | In the past, `.git/HEAD` was a symbolic link pointing at |
| 42 | `refs/heads/master`. When we wanted to switch to another branch, |
| 43 | we did `ln -sf refs/heads/newbranch .git/HEAD`, and when we wanted |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 44 | to find out which branch we are on, we did `readlink .git/HEAD`. |
| 45 | This was fine, and internally that is what still happens by |
| 46 | default, but on platforms that do not have working symlinks, |
| 47 | or that do not have the `readlink(1)` command, this was a bit |
| 48 | cumbersome. On some platforms, `ln -sf` does not even work as |
Junio C Hamano | 735a4f7 | 2006-12-03 01:53:32 | [diff] [blame] | 49 | advertised (horrors). Therefore symbolic links are now deprecated |
| 50 | and symbolic refs are used by default. |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 51 | |
Junio C Hamano | 97c11c5 | 2007-01-16 10:44:47 | [diff] [blame] | 52 | git-symbolic-ref will exit with status 0 if the contents of the |
| 53 | symbolic ref were printed correctly, with status 1 if the requested |
| 54 | name is not a symbolic ref, or 128 if another error occurs. |
| 55 | |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 56 | Author |
| 57 | ------ |
| 58 | Written by Junio C Hamano <junkio@cox.net> |
| 59 | |
| 60 | GIT |
| 61 | --- |
Junio C Hamano | f7c042d | 2008-06-06 22:50:53 | [diff] [blame] | 62 | Part of the linkgit:git[1] suite |