commit f19a17b36dbf7b218c3681b5f17f4a6c650c7a82 Author: wangtao <271024963@qq.com> Date: Fri Jul 17 11:58:40 2020 +0800 Initial commit diff --git a/README.md b/README.md new file mode 100644 index 0000000..5a17556 --- /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/wangtao/MsxDStomX.git +git push -u origin master + +``` + +#### 从命令行推送已经创建的仓库 + +```bash +git remote add origin http://testgitea2.trustie.net/wangtao/MsxDStomX.git +git push -u origin master + +``` +