Go to file
nigel007 9ce71f0ffa Merge branch 'master' of https://git.trustie.net/Nigel/code_snippets 2021-04-26 16:25:37 +08:00
.gitignore Initial commit 2021-01-21 22:42:33 +08:00
LICENSE Initial commit 2021-01-21 22:42:33 +08:00
README.md Initial commit 2021-01-21 22:42:33 +08:00
Trustie_server Trustie 测试服务器搭建注意事项 2021-04-26 16:23:24 +08:00
mongodb_operations 利用js代码从mongodb中导出查询数据到文件中 2021-01-21 22:44:38 +08:00
工具来源 如何识别stackoverflow中的代码片段 2021-01-25 11:01:10 +08:00
求兵配置Trustie环境注意事项.md 求兵的注意事项 2021-04-26 16:25:28 +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/Nigel/code_snippets.git
git push -u origin master

从命令行推送已经创建的仓库

git remote add origin https://git.trustie.net/Nigel/code_snippets.git
git push -u origin master