Horje
upload new repo to git Code Example
git init repo
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 
Source: kbroman.org
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
upload new repo to git
echo "# Can-I-Shop-2" >> README.md
git init
git add .
git commit -m "first commit"
git remote add origin https://github.com/username/projectname.git
git push -u origin master
                
init step way to create repository git
git configuration 




Shell

Related
remove docker ubuntu Code Example remove docker ubuntu Code Example
bookbuild react app from scratch Code Example bookbuild react app from scratch Code Example
create requirements.txt python Code Example create requirements.txt python Code Example
thunderbird for linux Code Example thunderbird for linux Code Example
how to add requirments file ppythopn Code Example how to add requirments file ppythopn Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
11