Go to file
sulenn a12cb97505 docs: update content 2020-10-10 10:16:39 +08:00
.gitignore Initial commit 2020-09-28 19:10:23 +08:00
LICENSE Initial commit 2020-09-28 19:10:23 +08:00
README.md Initial commit 2020-09-28 19:10:23 +08:00
一种自动化的开源软件质量证据提取方法.doc docs: update content 2020-10-09 16:19:05 +08:00
一种面向开源协作社区的共识激励机制.docx docs: update content 2020-10-10 10:16:39 +08:00
面向大规模协作开发的海量软件项目共享方法.doc docs: update content 2020-10-09 16:19:05 +08:00

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