|
|
||
|---|---|---|
| .gitignore | ||
| LICENSE | ||
| README.md | ||
| 一种自动化的开源软件质量证据提取方法.doc | ||
| 一种面向开源协作社区的共识激励机制.docx | ||
| 面向大规模协作开发的海量软件项目共享方法.doc | ||
README.md
从命令行创建一个新的仓库
touch README.md
git init
git add README.md
git commit -m "first commit"
git remote add origin https://git.trustie.net/qiubing/consensus.git
git push -u origin master
从命令行推送已经创建的仓库
git remote add origin https://git.trustie.net/qiubing/consensus.git
git push -u origin master