美文网首页
github推送文件

github推送文件

作者: zhfish | 来源:发表于2018-02-11 17:39 被阅读0次

create a new repository on the command line

echo "# crawlfiction" >> README.md
git init
git add README.md
git commit -m "first commit"
git remote add origin https://github.com/XXXXX.git
git push -u origin master

push an existing repository from the command line

git remote add origin https://github.com/XXXXXXX.git
git push -u origin master

相关文章

网友评论

      本文标题:github推送文件

      本文链接:https://www.haomeiwen.com/subject/ksqltftx.html