About 284,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 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.

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

    Sep 26, 2010 · When using git clone --recurse-submodules there was previously no way to pass a --remote switch to the implicit git submodule update command for any use case where you …

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

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

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

    702 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, …

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

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

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

    Mar 22, 2014 · 304 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 …

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