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
(example from the manpage)
(manpage link)
Line 33: Line 33:
 
                 staging/staging-next
 
                 staging/staging-next
 
               $ git checkout -b staging staging/master
 
               $ git checkout -b staging staging/master
 +
==Reference==
 +
* {{l/manpage|git-remote|manpage}}

Revision as of 21:50, 20 January 2019

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

Reference