commit ea9214dfbf29c1bc8b95672b908147449123b915 Author: Serendipity <510739832@qq.com> Date: Sat Aug 19 07:52:32 2023 +0800 first commit diff --git a/README.md b/README.md new file mode 100644 index 0000000..8101eb1 --- /dev/null +++ b/README.md @@ -0,0 +1,12 @@ +功能: 练习从命令行创建一个新的仓库 + +```powershell +touch touch README.md # 创建说明文件 +git init # 初始化仓库 +git checkout -b main # 将文件加入到本地仓库发送列表 +git add README.md +git commit -m "first commit" +git remote add origin https://git.mashibing.com/msb_23480/first_msbwarehouse.git +git push -u origin main +``` +