From 28f3c47ba76ce15c5385c88f7f3e4fc62df394c4 Mon Sep 17 00:00:00 2001 From: wangtao <271024963@qq.com> Date: Mon, 20 Apr 2020 16:14:57 +0800 Subject: [PATCH] Initial commit --- README.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..9404eb6 --- /dev/null +++ b/README.md @@ -0,0 +1,20 @@ +## 从命令行创建一个新的仓库 + +```bash +touch README.md +git init +git add README.md +git commit -m "first commit" +git remote add origin http://gitea.trustie.net/wangtao/rcore-test.git +git push -u origin master + +``` + +## 从命令行推送已经创建的仓库 + +```bash +git remote add origin http://gitea.trustie.net/wangtao/rcore-test.git +git push -u origin master + +``` +