Skip to content

Commit 79d8f16

Browse files
Candidate release of source code.
1 parent db81e6b commit 79d8f16

File tree

12,449 files changed

+2800756
-16
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

12,449 files changed

+2800756
-16
lines changed

.gitattributes

+56
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
# Set the default behavior, in case people don't have core.autocrlf set.
2+
* text=auto
3+
4+
# Explicitly declare text files you want to always be normalized and converted
5+
# to native line endings on checkout.
6+
*.java text
7+
*.gradle text
8+
*.manifest text
9+
*.css text
10+
*.htm text
11+
*.html text
12+
*.js text
13+
*.json text
14+
*.jsp text
15+
*.jspf text
16+
*.jspx text
17+
*.properties text
18+
*.sh text
19+
*.tld text
20+
*.txt text
21+
*.tag text
22+
*.xml text
23+
*.c text
24+
*.h text
25+
*.cpp text
26+
*.hh text
27+
*.cc text
28+
29+
# Declare files that will always have CRLF line endings on checkout.
30+
*.sln text eol=crlf
31+
*.vcproj text eol=crlf
32+
*.vcxproj text eol=crlf
33+
*.bat text eol=crlf
34+
35+
# Denote all files that are truly binary and should not be modified.
36+
*.png binary
37+
*.jpg binary
38+
*.class binary
39+
*.dll binary
40+
*.ear binary
41+
*.gif binary
42+
*.ico binary
43+
*.jar binary
44+
*.jpeg binary
45+
*.so binary
46+
*.war binary
47+
*.pdf binary
48+
*.exe binary
49+
*.lib binary
50+
*.sa binary
51+
*.gz binary
52+
*.gzf binary
53+
*.tgz binary
54+
*.tar binary
55+
56+

.gitignore

+58-9
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,63 @@
1-
.gradle
1+
*.class
2+
Thumbs.db
3+
.DS_Store
4+
.svn
5+
excludedFiles.txt
6+
.classpath
7+
.project
8+
ghidra.repos.config
9+
10+
/*/*/*/*/*/bin/
11+
/*/*/*/*/*/build/
12+
/*/*/*/*/bin/
13+
/*/*/*/*/build/
14+
/*/*/*/bin/
15+
/*/*/*/build/
16+
/*/*/bin/
17+
/*/*/build/
18+
/*/bin/
19+
/*/build/
220
/build/
21+
/bin/
22+
23+
**/dist
24+
repositories/
25+
*.sla
26+
27+
# Misc files
28+
*.setting
29+
*.settings
30+
*.directory
31+
.gradle/
32+
.settings/
33+
34+
# File locks
35+
*.ulock
36+
*.lock
37+
38+
# Gradle creates these per developer
39+
**/vs/
40+
41+
# Misc files produced while executing application
42+
Ghidra/.ghidraSvrKeys
43+
wrapper.log*
344

4-
# Ignore Gradle GUI config
5-
gradle-app.setting
45+
# Ignore object files
46+
*.o
47+
*.obj
648

7-
# Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored)
8-
!gradle-wrapper.jar
49+
# Ignore MS Visual Studio artifcats
50+
Release
51+
#Debug
52+
*.ncb
53+
*.suo
54+
*.aps
55+
*.vcproj.*
956

10-
# Cache of project
11-
.gradletasknamecache
57+
# Ignore UNIX backup files
58+
*~
59+
*.swp
1260

13-
# # Work around https://youtrack.jetbrains.com/issue/IDEA-116898
14-
# gradle/wrapper/gradle-wrapper.properties
61+
# Ignore eclipse project files
62+
.project
63+
.classpath

0 commit comments

Comments
 (0)