Skip to content

Git Command

Create a new repository on the command line#

1
2
3
4
5
git init
git add .
git commit -m "first commit"
git remote add origin https://github.com/toanph1505/test.git
git push -u origin master