Skip to content
This repository has been archived by the owner on Mar 26, 2020. It is now read-only.

add IDE specific files to .gitignore #1238

Merged
merged 3 commits into from
Sep 17, 2018
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
20 changes: 19 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ glusterd2/xlator/xlator-checker/xlator-checker
.vagrant/
# Ignore vendored dependencies
vendor/
#Ignore vscode ide files
.vscode
# Ignore build and release directories
build/
releases/
Expand All @@ -22,4 +24,20 @@ VERSION
endpoints.json
generate-doc
# Ignore vi backup files
*~
*~
# Ignore patches.
*.patch
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Well, I use git format-patch often and git status helps me find those patch files. That's just my personal preference. This is okay

# Eclipse files
.classpath
.project
.settings/**
# Files generated by JetBrains IDEs, e.g. IntelliJ IDEA
.idea/
*.iml
# Vim-related files
[._]*.s[a-w][a-z]
[._]s[a-w][a-z]
*.un~
Session.vim
.netrwhist

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I use vim. It would be nice if you could add *.swp in place of this empty line :)

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

done