Horje
push/upload git repo to github Code Example
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
                
push/upload git repo to github
git remote add origin https://github.com/username/projectname.git
#A new repo should be created on GitHub and the url used in the initial upload.

git push -u origin master
#Subsequent command used to upload project. If name of master branch han been
#changed, use that name.




Shell

Related
git not asking for password Code Example git not asking for password Code Example
delete local git repository command line creates by react Code Example delete local git repository command line creates by react Code Example
how to uninitialize git Code Example how to uninitialize git Code Example
kill port Code Example kill port Code Example
network manager restart ubuntu Code Example network manager restart ubuntu Code Example

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