About 445,000 results
Open links in new tab
  1. git - Clone a private repository (GitHub) - Stack Overflow

    I added a new SSH key to my GitHub account for the laptop and was successful in cloning and making changes to a public test repository that I set up. However, I couldn't clone the private repository. Is …

  2. How do I clone a Git repository into a specific folder?

    Sep 11, 2016 · To clone git repository into a specific folder, you can use -C <path> parameter, e.g. git -C /httpdocs clone [email protected]:whatever Although it'll still create a whatever folder on top of it, so to …

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

  4. What does cloning a GitHub repository mean? - Stack Overflow

    Cloning a repository means that you're downloading a copy of the source code from source control. To use the iOS SDK you have to download the code from GitHub (ie- clone the iOS SDK repository).

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

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

    78 Here is the best way to do this: mkdir repo cd repo git clone --bare path/to/repo.git .git git config --unset core.bare git reset --hard At this point you have a complete copy of the remote repository with …

  7. How to clone all repos at once from GitHub? - Stack Overflow

    I have a company GitHub account and I want to back up all of the repositories within, accounting for anything new that might get created for purposes of automation. I was hoping something like this...

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

    Sep 26, 2010 · If you want to use git clone --recurse-submodules --remote-submodules <repo-URL> to clone and update to the latest version, your submodules must either 1. have a branch master, …

  9. github - Git Clone - Repository not found - Stack Overflow

    Sep 20, 2014 · git clone &lt;url&gt; gives the message fatal: repository 'url' not found I tried the options in the link, but it didn't work.

  10. git - Cloning a repo from someone else's Github and pushing it to a ...

    Jun 27, 2017 · 128 GitHub: git clone someone else's repository & git push to your own repository I'm going to refer to someone else's repository as the other repository.