标签:checkout vue 本地 版本号 strong comm mit 文件 str
第一步:查看提交历史,查看想要回退版本的版本号
git log src/app.vue
第二步:回滚某个文件到指定版本
git checkout 版本号 src/app.vue
第三步:提交到本地仓库-拉取合并代码-提交到远程
git commit -m ‘提交描述‘
git pull
git push
标签:checkout vue 本地 版本号 strong comm mit 文件 str
原文地址:https://www.cnblogs.com/xuchao-blogs/p/14746430.html