功能: 练习从命令行创建一个新的仓库 ```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 # 推送文件到远程仓库分支 ``` 问题 ```powershell # 使用git push -u origin main 时出现错误 error: src refspec main does not match any error: failed to push some refs to 'https://git.mashibing.com/msb_23480/first_msbwarehouse.git' # 分析:GitHub 从今年 10 月 1 日起,在该平台上创建的所有新的源代码仓库将默认被命名为 “main”,而不是原先的"master"。 # 解决思路:把本地的 master 仓库名称修改为远端的 main # 重命名命令: git branch -m oldBranchName newBranchName # 解决: git branch -m master main # 把本地的 master 仓库名称修改为远端的 main # 然后再次提交 git push -u origin main ``` 在git平台对文件进行修改 ```powershell 新增一行内容 # 新增的内容 ```