About 50 results
Open links in new tab
  1. How do I clone a Git repository into a specific folder?

    Sep 11, 2016 · The command git clone git@github.com:whatever creates a directory named whatever containing a Git repository: ./ whatever/ .git I want the contents of the Git repository …

  2. How do I provide a username and password when running "git clone

    Apr 7, 2012 · I know how to include a username and password in an HTTPS Git URL like this: git clone https://username:password@host But I'd like to know how to provide a username and …

  3. How do I clone a specific Git branch? - Stack Overflow

    Git clone will clone remote branch into local. Is there any way to clone a specific branch by myself without switching branches on the remote repository?

  4. How do I "git clone" a repo, including its submodules?

    Sep 26, 2010 · How do I clone a git repository so that it also clones its submodules? Running git clone $REPO_URL merely creates empty submodule directories.

  5. How do I clone a single branch in Git? - Stack Overflow

    The following command will clone the branch tahir from the git repository.The above command clones only the specific branch but fetches the details of other branches.

  6. How to specify the private SSH-key to use when executing shell …

    A rather unusual situation perhaps, but I want to specify a private SSH-key to use when executing a shell (git) command from the local computer. Basically like this: git clone …

  7. Git how to clone with SSH key, username - Stack Overflow

    I have the following and i need to clone the repository in either windows terminal command prompt or linux. URL: git@xxxxx.com:xxx/xxx/git username: xxx@xxx.in SSH key: ssh-rsa …

  8. How to authenticate when I try to git clone from azure git?

    Jun 26, 2020 · How to authenticate when I try to git clone from azure git? You could use your personal access token (PAT) or SSH to authenticate when you try to git clone from azure git.

  9. git - How do I clone all remote branches? - Stack Overflow

    My master and development branches are tracked remotely on GitHub. How do I clone both these branches?

  10. git clone through ssh - Stack Overflow

    I have a project on which I created a git repository: $ cd myproject $ git init $ git add . $ git commit I the wanted to create a bare clone on another machine: $ cd .. $ git clone --bare