Git 简单6步清空所有commit记录的方法 傲世 2024年01月26日上午 10:03:00 教程资料 1. Checkout ```shell git checkout --orphan latest_branch ``` 2. Add all the files ```shell git add -A ``` 3. Commit the changes ```shell git commit -am "commit message" ```... 查看详情»