1git-remote(1) 2============ 3 4NAME 5---- 6git-remote - manage set of tracked repositories 7 8 9SYNOPSIS 10-------- 11[verse] 12'git remote' [-v | --verbose] 13'git remote add' [-t <branch>] [-m <master>] [-f] [--tags|--no-tags] [--mirror=<fetch|push>] <name> <url> 14'git remote rename' <old> <new> 15'git remote rm' <name> 16'git remote set-head' <name> (-a | -d | <branch>) 17'git remote set-branches' <name> [--add] <branch>... 18'git remote set-url' [--push] <name> <newurl> [<oldurl>] 19'git remote set-url --add' [--push] <name> <newurl> 20'git remote set-url --delete' [--push] <name> <url> 21'git remote' [-v | --verbose] 'show' [-n] <name> 22'git remote prune' [-n | --dry-run] <name> 23'git remote' [-v | --verbose] 'update' [-p | --prune] [(<group> | <remote>)...] 24 25DESCRIPTION 26----------- 27 28Manage the set of repositories ("remotes") whose branches you track. 29 30 31OPTIONS 32------- 33 34-v:: 35--verbose:: 36 Be a little more verbose and show remote url after name. 37 NOTE: This must be placed between `remote` and `subcommand`. 38 39 40COMMANDS 41-------- 42 43With no arguments, shows a list of existing remotes. Several 44subcommands are available to perform operations on the remotes. 45 46'add':: 47 48Adds a remote named <name> for the repository at 49<url>. The command `git fetch <name>` can then be used to create and 50update remote-tracking branches <name>/<branch>. 51+ 52With `-f` option, `git fetch <name>` is run immediately after 53the remote information is set up. 54+ 55With `--tags` option, `git fetch <name>` imports every tag from the 56remote repository. 57+ 58With `--no-tags` option, `git fetch <name>` does not import tags from 59the remote repository. 60+ 61With `-t <branch>` option, instead of the default glob 62refspec for the remote to track all branches under 63`$GIT_DIR/remotes/<name>/`, a refspec to track only `<branch>` 64is created. You can give more than one `-t <branch>` to track 65multiple branches without grabbing all branches. 66+ 67With `-m <master>` option, `$GIT_DIR/remotes/<name>/HEAD` is set 68up to point at remote's `<master>` branch. See also the set-head command. 69+ 70When a fetch mirror is created with `\--mirror=fetch`, the refs will not 71be stored in the 'refs/remotes/' namespace, but rather everything in 72'refs/' on the remote will be directly mirrored into 'refs/' in the 73local repository. This option only makes sense in bare repositories, 74because a fetch would overwrite any local commits. 75+ 76When a push mirror is created with `\--mirror=push`, then `git push` 77will always behave as if `\--mirror` was passed. 78 79'rename':: 80 81Rename the remote named <old> to <new>. All remote-tracking branches and 82configuration settings for the remote are updated. 83+ 84In case <old> and <new> are the same, and <old> is a file under 85`$GIT_DIR/remotes` or `$GIT_DIR/branches`, the remote is converted to 86the configuration file format. 87 88'rm':: 89 90Remove the remote named <name>. All remote-tracking branches and 91configuration settings for the remote are removed. 92 93'set-head':: 94 95Sets or deletes the default branch (`$GIT_DIR/remotes/<name>/HEAD`) for 96the named remote. Having a default branch for a remote is not required, 97but allows the name of the remote to be specified in lieu of a specific 98branch. For example, if the default branch for `origin` is set to 99`master`, then `origin` may be specified wherever you would normally 100specify `origin/master`. 101+ 102With `-d`, `$GIT_DIR/remotes/<name>/HEAD` is deleted. 103+ 104With `-a`, the remote is queried to determine its `HEAD`, then 105`$GIT_DIR/remotes/<name>/HEAD` is set to the same branch. e.g., if the remote 106`HEAD` is pointed at `next`, "`git remote set-head origin -a`" will set 107`$GIT_DIR/refs/remotes/origin/HEAD` to `refs/remotes/origin/next`. This will 108only work if `refs/remotes/origin/next` already exists; if not it must be 109fetched first. 110+ 111Use `<branch>` to set `$GIT_DIR/remotes/<name>/HEAD` explicitly. e.g., "git 112remote set-head origin master" will set `$GIT_DIR/refs/remotes/origin/HEAD` to 113`refs/remotes/origin/master`. This will only work if 114`refs/remotes/origin/master` already exists; if not it must be fetched first. 115+ 116 117'set-branches':: 118 119Changes the list of branches tracked by the named remote. 120This can be used to track a subset of the available remote branches 121after the initial setup for a remote. 122+ 123The named branches will be interpreted as if specified with the 124`-t` option on the 'git remote add' command line. 125+ 126With `--add`, instead of replacing the list of currently tracked 127branches, adds to that list. 128 129'set-url':: 130 131Changes URL remote points to. Sets first URL remote points to matching 132regex <oldurl> (first URL if no <oldurl> is given) to <newurl>. If 133<oldurl> doesn't match any URL, error occurs and nothing is changed. 134+ 135With '--push', push URLs are manipulated instead of fetch URLs. 136+ 137With '--add', instead of changing some URL, new URL is added. 138+ 139With '--delete', instead of changing some URL, all URLs matching 140regex <url> are deleted. Trying to delete all non-push URLs is an 141error. 142 143'show':: 144 145Gives some information about the remote <name>. 146+ 147With `-n` option, the remote heads are not queried first with 148`git ls-remote <name>`; cached information is used instead. 149 150'prune':: 151 152Deletes all stale remote-tracking branches under <name>. 153These stale branches have already been removed from the remote repository 154referenced by <name>, but are still locally available in 155"remotes/<name>". 156+ 157With `--dry-run` option, report what branches will be pruned, but do not 158actually prune them. 159 160'update':: 161 162Fetch updates for a named set of remotes in the repository as defined by 163remotes.<group>. If a named group is not specified on the command line, 164the configuration parameter remotes.default will be used; if 165remotes.default is not defined, all remotes which do not have the 166configuration parameter remote.<name>.skipDefaultUpdate set to true will 167be updated. (See linkgit:git-config[1]). 168+ 169With `--prune` option, prune all the remotes that are updated. 170 171 172DISCUSSION 173---------- 174 175The remote configuration is achieved using the `remote.origin.url` and 176`remote.origin.fetch` configuration variables. (See 177linkgit:git-config[1]). 178 179Examples 180-------- 181 182* Add a new remote, fetch, and check out a branch from it 183+ 184------------ 185$ git remote 186origin 187$ git branch -r 188origin/master 189$ git remote add linux-nfs git://linux-nfs.org/pub/linux/nfs-2.6.git 190$ git remote 191linux-nfs 192origin 193$ git fetch 194* refs/remotes/linux-nfs/master: storing branch 'master' ... 195 commit: bf81b46 196$ git branch -r 197origin/master 198linux-nfs/master 199$ git checkout -b nfs linux-nfs/master 200... 201------------ 202 203* Imitate 'git clone' but track only selected branches 204+ 205------------ 206$ mkdir project.git 207$ cd project.git 208$ git init 209$ git remote add -f -t master -m master origin git://example.com/git.git/ 210$ git merge origin 211------------ 212 213 214SEE ALSO 215-------- 216linkgit:git-fetch[1] 217linkgit:git-branch[1] 218linkgit:git-config[1] 219 220GIT 221--- 222Part of the linkgit:git[1] suite