mirror of
https://github.com/github/gitignore.git
synced 2026-04-12 14:31:42 +08:00
This commit adds a global ignore file for SlickEdit, a commercial editor.
SlickEdit will create the following files when the user sets up a workspace:
*.vpw Workspace file. Contains a list of project files associated with
the workspace.
*.vpj Project file. Contains the project’s settings, including the list
of source files.
*.vpwhist Workspace history file for Windows. Contains user session
information (list of open files, debugger breakpoints, etc.)
*.vpwhistu Workspace history file for UNIX/Linux/MacOSX. (Same as above.)
*.vtg Workspace tag file. Contains a database of source code symbols.
It is assumed that GitHub users will generally not want to store their
workspace and project files in a repository, so those files are ignored
globally. However, those files do not contain user-specific data so they
could be stored in a repository and shared among developers if desired for
a particular project. This can be done by adding rules like ’!*.vpw’ and
‘!*.vpj’ to the project’s .gitignore file.
The workspace history and tag files contain user-specific data, so they
should not be stored in a repository.
For more information, download the PDF user guide from:
http://www.slickedit.com/products/slickedit/product-documentation
Note: The user guide is 1400 pages long and over 13MB in size.
Searching for ‘vpwhist’ will lead to the section that discusses storing
these files in a repository.
|
||
|---|---|---|
| .. | ||
| Archives.gitignore | ||
| BricxCC.gitignore | ||
| Cloud9.gitignore | ||
| CVS.gitignore | ||
| DartEditor.gitignore | ||
| Dreamweaver.gitignore | ||
| Eclipse.gitignore | ||
| EiffelStudio.gitignore | ||
| Emacs.gitignore | ||
| Ensime.gitignore | ||
| Espresso.gitignore | ||
| FlexBuilder.gitignore | ||
| JetBrains.gitignore | ||
| Kate.gitignore | ||
| KDevelop4.gitignore | ||
| Lazarus.gitignore | ||
| Linux.gitignore | ||
| Matlab.gitignore | ||
| Mercurial.gitignore | ||
| ModelSim.gitignore | ||
| MonoDevelop.gitignore | ||
| NetBeans.gitignore | ||
| NotepadPP.gitignore | ||
| OSX.gitignore | ||
| Quartus2.gitignore | ||
| README.md | ||
| Redcar.gitignore | ||
| SBT.gitignore | ||
| SlickEdit.gitignore | ||
| SublimeText.gitignore | ||
| SVN.gitignore | ||
| Tags.gitignore | ||
| TextMate.gitignore | ||
| Vagrant.gitignore | ||
| vim.gitignore | ||
| VirtualEnv.gitignore | ||
| webMethods.gitignore | ||
| Windows.gitignore | ||
| XilinxISE.gitignore | ||
Globally Useful gitignores
This directory contains globally useful gitignores, e.g. OS-specific and editor specific.
For more on global gitignores: http://help.github.com/git-ignore/
And a good blog post about 'em: http://augustl.com/blog/2009/global_gitignores