github使用

来源:互联网 发布:广州简知科技 编辑:程序博客网 时间:2024/06/07 15:17
Create a new repository on the command line

touch README.md
git init
git add README.md
git commit -m "first commit"
git remote add origin https://github.com/adream307/PLITest.git
git push -u origin master

Push an existing repository from the command line

git remote add origin https://github.com/adream307/PLITest.git
git push -u origin master
0 0