Difference between revisions of "Git/remote"

from HTYP, the free directory anyone can edit if they can prove to me that they're not a spambot
< Git
Jump to navigation Jump to search
(another command)
(example from the manpage)
Line 1: Line 1:
 
==Examples==
 
==Examples==
 +
* '''git remote add {{arg|server alias}} {{arg|URL.git}}'''
 +
** adds a remote server
 
* '''git remote''' -v
 
* '''git remote''' -v
 
** lists aliases of remote servers
 
** lists aliases of remote servers
Line 6: Line 8:
 
* '''git remote''' show {{arg|server alias}}
 
* '''git remote''' show {{arg|server alias}}
 
** displays information about a remote server
 
** displays information about a remote server
 +
===from the Manpage===
 +
Add a new remote, fetch, and check out a branch from it:
 +
 +
              $ git remote
 +
              origin
 +
              $ git branch -r
 +
                origin/HEAD -> origin/master
 +
                origin/master
 +
              $ git remote add staging git://git.kernel.org/.../gregkh/staging.git
 +
              $ git remote
 +
              origin
 +
              staging
 +
              $ git fetch staging
 +
              ...
 +
              From git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging
 +
                * [new branch]      master    -> staging/master
 +
                * [new branch]      staging-linus -> staging/staging-linus
 +
                * [new branch]      staging-next -> staging/staging-next
 +
              $ git branch -r
 +
                origin/HEAD -> origin/master
 +
                origin/master
 +
                staging/master
 +
                staging/staging-linus
 +
                staging/staging-next
 +
              $ git checkout -b staging staging/master

Revision as of 20:30, 9 March 2015

Examples

  • git remote add <server alias> <URL.git>
    • adds a remote server
  • git remote -v
    • lists aliases of remote servers
  • git remote show
    • seems to just list remote server aliases
  • git remote show <server alias>
    • displays information about a remote server

from the Manpage

Add a new remote, fetch, and check out a branch from it:

              $ git remote
              origin
              $ git branch -r
                origin/HEAD -> origin/master
                origin/master
              $ git remote add staging git://git.kernel.org/.../gregkh/staging.git
              $ git remote
              origin
              staging
              $ git fetch staging
              ...
              From git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging
               * [new branch]      master     -> staging/master
               * [new branch]      staging-linus -> staging/staging-linus
               * [new branch]      staging-next -> staging/staging-next
              $ git branch -r
                origin/HEAD -> origin/master
                origin/master
                staging/master
                staging/staging-linus
                staging/staging-next
              $ git checkout -b staging staging/master