Skip to content

Commit 7ffec85

Browse files
committed
Convert .hgignore to .gitignore
1 parent c6d10bd commit 7ffec85

File tree

1 file changed

+13
-14
lines changed

1 file changed

+13
-14
lines changed

.hgignore renamed to .gitignore

Lines changed: 13 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,21 @@
1-
syntax: glob
21
# Executables shouldn't go in the repository
3-
*.exe
2+
/*.exe
43
# Nor should Vim swap files (what a disaster that would be)
5-
.*.swp
6-
.swp
7-
.*.swo
8-
.swo
4+
/.*.swp
5+
/.swp
6+
/.*.swo
7+
/.swo
98
# hg revert renames the file to *.orig but we don't want them... we reverted the changes to them, remember?
10-
*.orig
9+
/*.orig
1110

12-
*.pyc
11+
/*.pyc
1312

14-
Data/*
13+
/Data/**
1514

16-
Other/Source/PortableApps.comInstaller*
17-
App/AppInfo/Launcher/Debug.nsh
18-
App/AppInfo/Launcher/Custom.nsh
15+
/Other/Source/PortableApps.comInstaller*
16+
/App/AppInfo/Launcher/Debug.nsh
17+
/App/AppInfo/Launcher/Custom.nsh
1918

2019
# generated by sphinx from Other/Source/Manual
21-
App/Manual/*
22-
Other/Source/Manual/_build/*
20+
/App/Manual/**
21+
/Other/Source/Manual/_build/**

0 commit comments

Comments
 (0)