commit e85b05b65abc55e0e8e9fe6adf76698d463f39a6 Author: ladventure <1056102095@qq.com> Date: Mon Apr 20 16:04:39 2020 +0800 Initial commit diff --git a/README.md b/README.md new file mode 100644 index 0000000..1dd082d --- /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/ladventure/xiaomi_note3-1.git +git push -u origin master + +``` + +## 从命令行推送已经创建的仓库 + +```bash +git remote add origin http://gitea.trustie.net/ladventure/xiaomi_note3-1.git +git push -u origin master + +``` +