aboutsummaryrefslogtreecommitdiffstats
path: root/Global
Commit message (Collapse)AuthorAgeFilesLines
* add .fuse_hidden* to LinuxFabian Raab2015-08-241-0/+3
|
* Added dotfiles in working directoryDaniel A. Maierhofer2015-08-221-2/+5
| | | | | | | Official Documentation: https://mercurial.selenic.com/wiki/FileFormats#Files_in_the_working_directory https://mercurial.selenic.com/wiki/Subrepository The specification for the .hg/ folder is simplified, see: https://stackoverflow.com/a/15057742
* Merge pull request #1545 from skylerberg/virtual-envBrendan Forster2015-08-211-0/+1
|\ | | | | Ignore 'local' folder for virtualenv
| * Ignore 'local' folder for virtualenvSkyler Berg2015-06-071-0/+1
| |
* | add Android Studio to the covers listVictor Häggqvist2015-06-271-1/+1
|/ | | which make it easier to find in search
* Merge pull request #1484 from andres-mancera/SynopsysVCS_patchCarl Suster2015-06-021-12/+25
|\ | | | | Adding a few more files/file extensions/directories for Synopsys VCS.
| * Cleaning-up some of the comments that had been previously added.andres-mancera2015-06-011-37/+16
| |
| * Adding a few more files/file extensions/directories for Synopsys VCS.andres-mancera2015-04-231-11/+45
| | | | | | | | | | | | | | | | | | This new version adds: - fsdb waveforms - simv.db.dir/ directory for VHDL top configs - ucli.key - vc_hdrs.h - Also added a few comments about where each one of the files come from.
* | Merge pull request #1514 from bbodenmiller/xcodeCarl Suster2015-05-301-1/+10
|\ \ | | | | | | sync up xcode related gitignore files
| * | sync up xcode related gitignore filesBen Bodenmiller2015-05-101-1/+10
| | | | | | | | | | | | some details based on #1221
* | | Merge pull request #1392 from Arvur/masterBrendan Forster2015-05-141-10/+25
|\ \ \ | | | | | | | | Reworked Lazarus.gitignore according to Lazarus Wiki
| * | | Reworked Lazarus.gitignore according to Lazarus WikiDenis Grinyuk2015-02-031-10/+25
| | | | | | | | | | | | | | | | http://wiki.freepascal.org/File_extensions
* | | | Move VS Code to Global folderVictor Isadov2015-05-021-0/+2
| |/ / |/| |
* | | Add Java APT class path to EclipseStéphane Veyret2015-04-241-0/+3
| |/ |/|
* | New IDE released: CLIONGinger Geek2015-04-161-1/+1
| | | | | | JetBrains recently released a new C/C++ IDE: CLion
* | Link to section being describedshalecraig2015-03-291-1/+1
| |
* | Merge pull request #1429 from ergl/masterCarl Suster2015-03-151-1/+1
|\ \ | | | | | | Update Jetbrains.gitignore
| * | Updated Jetbrains.gitignoreergl2015-03-051-1/+1
| | |
* | | Add .ensime_cache dirTAC2015-03-141-0/+1
|/ / | | | | | | .ensime_cache is cache dir.
* / Expand list of root-of-volume dotfilesWilliam West2015-02-111-1/+5
|/ | | | | | | | | | | In addition to `.Spotlight-V100` and `.Trashes`, the following dotfiles may appear at the root of all OSX volumes (not just external disks): - `.DocumentRevisions-V100`: auto-save and versions storage - `.fseventsd`: file system event storage - `.Temporaryitems`: temp directory used by some applications instead of /tmp and /var/tmp - `.VolumeIcon.icns`: storage of custom icon for volume, if set
* Merge pull request #1282 from andres-mancera/synopsys_vcsCarl Suster2015-01-221-0/+23
|\ | | | | Adding gitignore file for Synopsys VCS simulator.
| * Moving SynopsysVCS.gitignore into Global/.andres-mancera2015-01-211-0/+23
| | | | | | | | Whether to use VCS or any other simulator is a choice of the individual designer rather than of the project as a whole.
* | Merge Pull Request #1338 for EclipseCarl Suster2015-01-151-0/+6
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes #1217. Once again ignore .classpath and .project in the Eclipse template. This has been requested in multiple PRs such as #1338 and #1221 and is essentially a reversion of #805. I copy the explanation for this change from the discussion in #1217 by @segfly: *In short*: I can't point to any counter-documentation off the top of my head. I just know from experience these files pollute a project's repo without adding value - that is, unless everyone contributing is using Eclipse and no-one is using dependency management. And even then, the guidance provided by the eclipse docs is bad advice. *In Long*: The .classpath file is used by Eclipse to maintain the project's classpath during automatic compile (every save of a file). In the olden days, one would manually configure the project within the Eclipse UI and include all the dependent jars necessary to compile your project. Eclipse then wrote that configuration out to the .classpath file. In theory, this file could be shared with others so they did not have to manually configure their eclipse classpath. In practice, I never saw it work out quite so well due to eventual bloating of the classpath with needless jars or jars that only existed on one person's machine. Mind you, many people back then also used to check their dependent jars into version control along with their source. Dependency management tools like Gradle and Maven have done away with all that of course. But they also integrate nicely with Eclipse and manage the project classpath dynamically. The .classpath file is basically rebuilt based on changes to the build.gradle file or pom.xml file. Effectively, this renders the whole point of checking in the .classpath moot as it is easily rebuilt by the Maven or Gradle plugin. The .project file is another animal completely. It basically describes what plugins should be applied to the project as configured in the Eclipse UI. Again the theory is it could be shared and creates a happy world. But due to different eclipse versions people may have, different plugins installed, etc. sharing the .project file actually causes more issues. And I've seen many projects unable to open due to a bad .project file - requiring one to delete it anyway (which then of course, when someone recreates it, they inevitably check it in over the old one and end up breaking someone else's environment). The bottom line is, regardless of what the eclipse documentation says, these are very much internal configuration files for eclipse and best left out of a repo.
| * | Added Eclipse JDT .classpath file, and the Eclipse core .project file toNicholas Pace2014-12-261-0/+6
| | | | | | | | | template
* | | Merge pull request #1306 from Hillkorn/patch-1Carl Suster2015-01-141-0/+1
|\ \ \ | | | | | | | | Added missing gradle netbeans directory
| * | | Added missing gradle netbeans directoryDennis Schumann2014-12-041-0/+1
| |/ /
* | | Merge pull request #1353 from mbaltaks/patch-1Carl Suster2015-01-141-0/+1
|\ \ \ | | | | | | | | Ignore the pip self check marker file in a Virtualenv.
| * | | Ignore the pip self check marker file in a Virtualenv.Michael Baltaks2015-01-101-0/+1
| | | |
* | | | add .Trash-* to ignore Linux partition or ext disk trash foldersSteve Lacy2015-01-131-0/+3
|/ / /
* | | Merge pull request #1333 from adamrights/feature/redisCarl Suster2015-01-071-0/+3
|\ \ \ | | | | | | | | Add a global redis ignore file.
| * | | Add a global redis ignore file.bedella2014-12-221-0/+3
| |/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Ignores all .rdb files, (default: dump.rdb). These files contain a binary representation of the in-memory redis data that is generated using cli tools or on a redis failure. They can be used to restore a redis db, and may contain sensitive data so should not be saved in version control.
* | | Merge pull request #1312 from rogersuen/global-jdevCarl Suster2015-01-071-0/+9
|\ \ \ | | | | | | | | Global JDeveloper.gitignore
| * | | doc JDeveloper.gitignoreRoger Suen2014-12-101-0/+7
| | | |
| * | | added depoy/ and javadoc/ to JDeveloper.gitignoreRoger Suen2014-12-101-0/+2
| |/ /
* / / Capitalise initial letter in template filenames for consistency/sortingCarl Suster2015-01-072-0/+0
|/ /
* / Move LibreOffice.gitignore to /GlobalDjones Boni2014-11-221-0/+2
|/
* Merge pull request #1261 from jaxx/masterCarl Suster2014-11-121-0/+3
|\ | | | | Ignore debug information files
| * Update Lazarus.gitignorejaxx2014-10-241-0/+3
| |
* | Merge pull request #1267 from rogersuen/global-jdevCarl Suster2014-11-121-0/+4
|\ \ | | | | | | added JDeveloper.gitignore
| * | added JDeveloper.gitignoreRoger Suen2014-10-271-0/+4
| |/
* | Merge pull request #1264 from arteymix/masterCarl Suster2014-11-081-0/+3
|\ \ | | | | | | Added a gitignore for Anjuta IDE http://anjuta.org/
| * | Ignore the symbole database which is a generated binary file.Guillaume Poirier-Morency2014-11-071-1/+2
| | |
| * | Added a gitignore for Anjuta IDE http://anjuta.org/Guillaume Poirier-Morency2014-10-251-0/+2
| |/
* | Merge pull request #1225 from thurask/momenticsCarl Suster2014-11-061-0/+3
|\ \ | | | | | | Add user-specific settings to Momentics.gitignore
| * | Add user-specific settings to Momentics.gitignorethurask2014-09-231-0/+3
| | | | | | | | | The .settings folder contains all of the user-specific preferences for Momentics (like it does for Eclipse, since they're the same underneath). Should be local only.
* | | Merge pull request #1259 from Kaceykaso/patch-1Carl Suster2014-11-061-0/+3
|\ \ \ | | | | | | | | Create CodeKit.gitignore
| * | | Create CodeKit.gitignoreKacey Coughlin2014-10-211-0/+3
| | |/ | |/|
* / | Create MicrosoftOfficeBen Bodenmiller2014-11-051-0/+10
|/ / | | | | Continuation of https://github.com/github/gitignore/pull/594/ and details from http://support.microsoft.com/kb/211632
* | Merge pull request #1232 from thunsaker/patch-1Carl Suster2014-10-201-0/+2
|\ \ | | | | | | Added New Files created by Crashlytics Plugin
| * | Another tweakThomas Hunsaker2014-10-191-2/+2
| | |