About 147,000 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 [email protected]:whatever creates a directory named whatever containing a Git repository: ./ whatever/ .git I want the contents of the Git repository …

  2. 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?

  3. 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.

  4. 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 …

  5. Error "'git' is not recognized as an internal or external command"

    700 I have an installation of Git for Windows, but when I try to use the git command in Command Prompt, I get the following error: 'git' is not recognized as an internal or external command, …

  6. git - GitHub Clone with OAuth Access Token - Stack Overflow

    Feb 19, 2017 · I can save a github access token variable and user a script with git clone https://oauth: [email protected] /user/repo.git or just add the token itself to a script.

  7. Filename too long in Git for Windows - Stack Overflow

    Mar 22, 2014 · 303 On Windows: Run Git Bash as administrator (right-clicking the app shortcut will show the option to Run as Administrator ) Run the following command: git config --system …

  8. 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 …

  9. How do I set GIT_SSL_NO_VERIFY for specific repos only?

    Jan 25, 2012 · You can do git config http.sslVerify "false" in your specific repo to disable SSL certificate checking for that repo only. This won't work with git clone, since you don't yet have …

  10. git - How to clone a repository from a specific commit ID ... - Stack ...

    Feb 15, 2023 · Git does not have a concept of a clone of a particular commit. Cloning is a function on (whole) repositories. Having cloned a repository, you can check out any commit you like …