From 1d5fb8c47bbd2a12ead951946a024c51e8b65c73 Mon Sep 17 00:00:00 2001 From: linchun Date: Fri, 17 Jul 2020 11:59:33 +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..d50bd45 --- /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://testgitea2.trustie.net/linchun/xwjUtCOzg.git +git push -u origin master + +``` + +#### 从命令行推送已经创建的仓库 + +```bash +git remote add origin http://testgitea2.trustie.net/linchun/xwjUtCOzg.git +git push -u origin master + +``` +