github cli create repo code example

Example 1: create repository in github using command line

git init
git add somefile
git commit -m "initial commit"
git remote add origin https://github.com/username/new_repo
git push -u origin master 

# 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: git create github repo

git init
git add .
git commit -m 'Initial commit'
gh repo create # => With the new GitHub CLI

Example 3: github create repository command line

git **create -d "\<commit name\>"**

Example 4: init step way to create repository git

git configuration