git clone code example

Example 1: set up git repository

# 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 git@github.com:username/new_repo #ssh
# Now push
git push -u origin master

Example 2: how to initialize a git repository command line

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

# New remote repository
git remote add origin git@github.com:username/new_repo #ssh
# Now push
git push -u origin master

Example 3: git clone with folder name

git clone git@github.com:whatever folder-name

Example 4: git clone different name

git clone https://github.com/sferik/sign-in-with-twitter.git signin

Example 5: git clone

#You will be required to sign into github

git clone git@github.com:UserName/gitRepositories.git

Example 6: git clone

gh repo clone <repository> [<directory>] [-- <gitflags>...] 
# With the new GitHub CLI

Tags:

Css Example