About 294,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 cloned into my

  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 password to …

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

    701 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, operable …

  6. 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 core.longpaths …

  7. What does depth for git clone mean? - Stack Overflow

    Dec 8, 2018 · This is what help for git clone says about it: --depth <depth> Create a shallow clone with a history truncated to the specified number of commits. Implies --single-branch unless --no-single …

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

  9. git - Change Folder Name During Clone - Stack Overflow

    May 20, 2024 · 18 Here is one more answer from @Marged in comments Create a folder with the name you want Run the command below from the folder you created git clone <path to your online repo> .

  10. 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 the local git repo …