您现在的位置是: 首页 > 后端开发 删除Git仓库所有历史提交记录,成为一个干净的仓库
删除Git仓库所有历史提交记录,成为一个干净的仓库
2020-05-20 【后端开发】 3913人已围观 7734次浏览
简介删除Git仓库所有历史提交记录,成为一个干净的仓库
在新建项目或者是直接复制之前的项目进行新项目开发时,由于之前项目的历史提交记录会存在服务器账号密码或一些不希望新项目中,可以通过历史记录找回的代码,这时候就需要删除新项目中,Git仓库的所有历史提交记录。下面就是具体的操作步骤
1. 首先是在当前项目中,切换到本地一个新的分支(分支名随意)
git checkout --orphan latest_branch
命令最后的latest_branch可以根据自己喜好进行修改(如果修改过,后续其他命令同样的地方记得也要修改下)
2. 提交当前项目中,所有的文件到上一步切换的分支中
git add -A
3. 提交上一步的修改
git commit -am "commit message"
其中commit message就是你的Git提交说明,可以自行修改
4. 删除原有的master分支
git branch -D master
如果需要删除历史记录的分支不是master,则修改最后的master即可
5. 重命名当前切换的分支为master
git branch -m master
同样的,如果第4步中,删除的不是master分支,则需要修改为对应的分支名
6. 最后一步,强制推送到线上的master分支
git push -f origin master
完成上诉步骤后,Git仓库中对应的master分支中的所有历史记录就全部删除了,只会存在第3步中,唯一的一次提交记录
很赞哦! (0)
相关文章
- 获取阿里云CDN真实IP
- SpringBoot @NotBlank 不生效问题
- SpringBoot 启动测试时出现提示 Test class should have exactly one public zero-argument constructor
- SqlServer 刷新所有视图
- PHP 在执行 composer install 时出现提示 PHP Fatal error: Allowed memory size of XXXXXX bytes exhausted <...>
- SqlServer 优化技巧
- Error in execution; nested exception is io.lettuce.core.RedisCommandExecutionException: ERR DISABLE You can't write or read against a disable instance
- Laravel Dingo/api 出现 The version given was unknown or has no registered routes.报错
- springboot引入mybatis-plus后出现ClassNotFoundException: org.mybatis.logging.LoggerFactory
- SpringBoot 定时任务 多线程
点击排行
- Error in execution; nested exception is io.lettuce.core.RedisCommandExecutionException: ERR DISABLE You can't write or read against a disable instance
- Debian apt 使用国内镜像
- RocketMQ 出现 sendDefaultImpl call timeout 问题
- 类 BASE64Decoder 程序包 sun.misc 找不到符号
- SpringBoot @NotBlank 不生效问题
- 记一次 Mybatis-Plus 自动填充无效问题解决
- SpringBoot 2.x 文件上传出现 The field file exceeds its maximum permitted size of 1048576 bytes
- nuxt 项目完整部署方案
站长推荐
猜你喜欢
- CentOS 安装JDK
- Linux 查看磁盘、磁盘分区、挂载磁盘、卸载磁盘操作
- Mac禁用Adobe Creative Cloud自启状态栏
- RocketMQ 出现 sendDefaultImpl call timeout 问题
- 解决Mac突然没声音的问题
- SpringBoot 集成 Elasticsearch 7.8.1 出现错误 Factory method 'elasticsearchRestHighLevelClient' threw exception; nested exception is java.lang.NoSuchFieldError: IGNORE_DEPRECATIONS
- Vue 路由跳转错误 NavigationDuplicated: Avoided redundant navigation to current location
- SpringBoot @NotBlank 不生效问题
- mybatis中大于等于小于等于的写法
- 使用 OpenSSL 将 pfx 格式证书转为 pem 格式