rm -rf .git
git init
git add .
git cm "first commit"
git remote add origin [your_github_repo_url]
git push -f -u origin master
Git完全清除提交信息/重建版本库
最新推荐文章于 2024-08-12 17:29:53 发布
本文详细介绍了如何使用Git进行版本控制,包括rm-rf.git的清理、gitinit初始化仓库、添加文件、gitcommit提交更改以及gitremoteaddorigin设置远程GitHub仓库,最后通过gitpush-f-uoriginmaster推送代码至master分支。
摘要由CSDN通过智能技术生成