About 14,400 results
Open links in new tab
  1. Git - git-remote Documentation

    Having a default branch for a remote is not required, but allows the name of the remote to be specified in lieu of a specific branch. For example, if the default branch for origin is set to …

  2. Git - Working with Remotes

    To be able to collaborate on any Git project, you need to know how to manage your remote repositories. Remote repositories are versions of your project that are hosted on the Internet or …

  3. Git - git-remote Documentation

    Par exemple, git remote set-head origin master définira la référence symbolique refs/remotes/origin/HEAD à refs/remotes/origin/master. Cela ne fonctionnera que si …

  4. Git - gitcredentials Documentation

    Git will sometimes need credentials from the user in order to perform operations; for example, it may need to ask for a username and password in order to access a remote repository over …

  5. Git - Remote Branches

    To demonstrate having multiple remote servers and what remote branches for those remote projects look like, let’s assume you have another internal Git server that is used only for …

  6. Git - Remote Branches

    To demonstrate having multiple remote servers and what remote branches for those remote projects look like, let’s assume you have another internal Git server that is used only for …

  7. Git - git-push Documentation

    The simplest way to push is git push <remote> <branch>. git push origin main will push the local main branch to the main branch on the remote named origin. The <repository> argument …

  8. Git - git-remote Documentation

    例如, git remote set-head source master 会将这个符号引用 ` refs/remotes/source/HEAD`设置为 ref/remotes/source/master。 这只有在 refs/remote/source/master 已经存在的情况下才能工 …

  9. Git - git-ls-remote Documentation

    Specify the full path of git-upload-pack on the remote host. This allows listing references from repositories accessed via SSH and where the SSH daemon does not use the PATH …

  10. Git - git-clone Documentation

    Clones a repository into a newly created directory, creates remote-tracking branches for each branch in the cloned repository (visible using git branch --remotes), and creates and checks …