No125:Git仓库初始化
创建远程仓库,获取远程仓库地址
进入已有仓库根目录,删除.git文件夹
初始化仓库
git init |
- 添加文件
git add . |
- 提交文件
git commit -m "init commit" |
- 配置远端仓库
git remote add github https://github.com/guoxianru/pages_blog.git |
- 推送(强制)到远程仓库
git push -f origin "master" |
本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。转载请注明来自 新码农!
评论