我是靠谱客的博主 时尚唇膏,最近开发中收集的这篇文章主要介绍webstorm gitignore配置User-specific stuff:Sensitive or high-churn files:Gradle:CMakeMongo Explorer plugin:IntelliJmpeltonen/sbt-idea pluginJIRA pluginCursive Clojure pluginCrashlytics plugin (for Android Studio and IntelliJ),觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

本示例是在mac环境下,windows环境大体相同。

1.从git仓库克隆代码
启动webstorm,选择”checkout out from Version Control”,再选择”git”,输入git url地址,clone克隆仓库。
这里写图片描述

注意:尽量使用一个空仓库,配置gitignore,这样可以避免很多配置麻烦。

2.安装.ignore插件

点击WebStrom->Perferences,在左侧菜单找到Plugins,点击Browse repositories…

这里写图片描述

搜索.ignore,点击Install,安装完成后重启WebStorm.然而上述方法安装完IDEA再启动的时候可能会报错。可以去官网https://plugins.jetbrains.com/idea/plugin/7495–ignore 去这个网址下载好压缩包,选择Install plugin from disk。。

3.为项目添加.gitignore file

在项目上右键->New ->.ignore file ->.gitignore file(Git)

这里写图片描述

先选择Example user template好了,以后有什么想过滤的可以自行添加,~最后点击Generate生成

这里写图片描述

注:添加过滤的文件内容

User-specific stuff:

.idea/**/workspace.xml
.idea/workspace.xml
.idea/**/tasks.xml
.idea/dictionaries

Sensitive or high-churn files:

.idea/**/dataSources/
.idea/**/dataSources.ids
.idea/**/dataSources.xml
.idea/**/dataSources.local.xml
.idea/**/sqlDataSources.xml
.idea/**/dynamic.xml
.idea/**/uiDesigner.xml

Gradle:

.idea/**/gradle.xml
.idea/**/libraries

CMake

cmake-build-debug/

Mongo Explorer plugin:

.idea/**/mongoSettings.xml

File-based project format:

*.iws

Plugin-specific files:

IntelliJ

/out/

mpeltonen/sbt-idea plugin

.idea_modules/

JIRA plugin

atlassian-ide-plugin.xml

Cursive Clojure plugin

.idea/replstate.xml

Crashlytics plugin (for Android Studio and IntelliJ)

com_crashlytics_export_strings.xml
crashlytics.properties
crashlytics-build.properties
fabric.properties

WebStrom属于IntelliJ IDEA,所有它们gitignore配置方法基本相同。

最后

以上就是时尚唇膏为你收集整理的webstorm gitignore配置User-specific stuff:Sensitive or high-churn files:Gradle:CMakeMongo Explorer plugin:IntelliJmpeltonen/sbt-idea pluginJIRA pluginCursive Clojure pluginCrashlytics plugin (for Android Studio and IntelliJ)的全部内容,希望文章能够帮你解决webstorm gitignore配置User-specific stuff:Sensitive or high-churn files:Gradle:CMakeMongo Explorer plugin:IntelliJmpeltonen/sbt-idea pluginJIRA pluginCursive Clojure pluginCrashlytics plugin (for Android Studio and IntelliJ)所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(39)

评论列表共有 0 条评论

立即
投稿
返回
顶部