Hearth
0
Q:

git clone

# New local repository
git init
git add .
git commit -m "Initial commit"

# New remote repository
# Create remote repository (likely on github), then:
git remote add origin https://github.com/username/new_repo #https
git remote add origin [email protected]:username/new_repo #ssh
# Now push
git push -u origin master
33
git clone [email protected]:whatever folder-name
6
# New local repository
git init
git add .
git commit -m "Initial commit"

# New remote repository
git remote add origin [email protected]:username/new_repo #ssh
# Now push
git push -u origin master
22
git clone "then thing you can copy with https"
5
git clone https://github.com/sferik/sign-in-with-twitter.git signin
3
git clone https://github.com/foo/repo_name.git new_directory_name
7
#You will be required to sign into github

git clone [email protected]:UserName/gitRepositories.git
9
note: your_url is your git hub url get it from the github Copy the clone command (either the SSH format or the HTTPS)

git clone your_url
3
git clone https://github.com/username/project-name.git
1
$ git clone https://github.com/libgit2/libgit2 mylibgit
0

New to Communities?

Join the community