Top "Git-clone" questions

Obtains a local copy of a remote Git repository.

How do I clone a specific Git branch?

Git clone will behave copying remote current working branch into local. Is there any way to clone a specific branch …

git git-branch git-clone
How do you clone a Git repository into a specific folder?

Executing the command git clone [email protected]:whatever creates a directory in my current folder named whatever, and drops …

git repository git-clone
Download a specific tag with Git

I'm trying to figure out how I can download a particular tag of a Git repository - it's one version …

git git-clone git-tag
Git push requires username and password

I cloned a Git repository from my GitHub account to my PC. I want to work with both my PC …

authentication github git-push git-pull git-clone
How to clone all remote branches in Git?

I have a master and a development branch, both pushed to GitHub. I've cloned, pulled, and fetched, but I remain …

git git-branch git-clone remote-branch
How do I clone a subdirectory only of a Git repository?

I have my Git repository which, at the root, has two sub directories: /finisht /static When this was in SVN, /…

git repository subdirectory git-clone sparse-checkout
git clone through ssh

I have a project on which I created a git repository: $ cd myproject $ git init $ git add . $ git commit I …

git git-clone
How do I clone a single branch in Git?

I have a local Git repository called 'skeleton' that I use for storing project skeletons. It has a few branches, …

git branch git-clone
How to clone git repository with specific revision/changeset?

How can I clone git repository with specific revision, something like I usually do in Mercurial: hg clone -r 3 /path/…

git git-clone revision
How to get Git to clone into current directory

I'm doing: git clone ssh://[email protected]/home/user/private/repos/project_hub.git ./ I'm getting: Fatal: destination path …

git git-clone