git 服务器新建一个空项目,如何在本地创建仓库上传文件

echo "# qipai" >> README.md
git init
git add README.md
git commit -m "first commit"
git remote add origin git@github.com:rongjie184/qipai.git
git push -u origin master
原文地址:https://www.cnblogs.com/wangrongjie/p/12500256.html