vs code中local history插件使用

插件的作用:

每次修改保存文件时, 都会在根目录生成一个.history目录,里面存放修改记录

注意事项:

安装完local history需完成2部设置,才可以放心使用

  • 避免搜索.history文件夹
    setting.json 文件中添加
  "search.exclude": {
    "**/.history": true
  }
  • 把.history加入到.gitignore中,避免把历史文件提交到git中的问题

你可能感兴趣的:(vs code中local history插件使用)