mirror of
https://github.com/github/gitignore
synced 2024-12-04 17:35:43 +01:00
Stricter greedy matching and validity checking
Fixed period matching, stricter matching on directories, and fixed greedy star character matching only #s Note: Fairly sure that Emacs doesn't make ?\#* or .*\.\#* files on line 9 and instead matches filename.#extension
This commit is contained in:
parent
7b684c2866
commit
11f99651a8
@ -1,23 +1,23 @@
|
|||||||
# -*- mode: gitignore; -*-
|
# -*- mode: gitignore; -*-
|
||||||
*~
|
.*~
|
||||||
\#*\#
|
\#.*\#
|
||||||
/.emacs.desktop
|
\/\.emacs\.desktop
|
||||||
/.emacs.desktop.lock
|
\/\.emacs\.desktop\.lock
|
||||||
*.elc
|
.*\.elc
|
||||||
auto-save-list
|
auto-save-list
|
||||||
tramp
|
tramp
|
||||||
.\#*
|
\.\#.*
|
||||||
|
|
||||||
# Org-mode
|
# Org-mode
|
||||||
.org-id-locations
|
\.org-id-locations
|
||||||
*_archive
|
.*_archive
|
||||||
|
|
||||||
# flymake-mode
|
# flymake-mode
|
||||||
*_flymake.*
|
.*_flymake\..*
|
||||||
|
|
||||||
# eshell files
|
# eshell files
|
||||||
/eshell/history
|
\/eshell\/history
|
||||||
/eshell/lastdir
|
\/eshell\/lastdir
|
||||||
|
|
||||||
# elpa packages
|
# elpa packages
|
||||||
/elpa/
|
\/elpa\/
|
||||||
|
Loading…
Reference in New Issue
Block a user