commit d1d431082c72eb41173d780ac465ec0df43d5215 Author: root Date: Fri Jul 17 12:10:21 2020 +0800 Initial commit diff --git a/README.md b/README.md new file mode 100644 index 0000000..b4b87aa --- /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/root/lzXPnrUTM.git +git push -u origin master + +``` + +#### 从命令行推送已经创建的仓库 + +```bash +git remote add origin http://testgitea2.trustie.net/root/lzXPnrUTM.git +git push -u origin master + +``` +