-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitignore
52 lines (42 loc) · 931 Bytes
/
.gitignore
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
# Block folders that belong to MCP
jars/
logs/
reobf/
temp/
bin/
conf/
docs/
eclipse/
runtime/
notes.md
# AnnoyanceFix related stuff
src/minecraft_server
src/minecraft/net/minecraft/client
src/minecraft/net/minecraft/isom
src/minecraft/net/minecraft/src/*.java
!src/minecraft/net/minecraft/src/BlockFence.java
!src/minecraft/net/minecraft/src/BlockStairs.java
!src/minecraft/net/minecraft/src/InventoryPlayerUtils.java
!src/minecraft/net/minecraft/src/EntityBoat.java
!src/minecraft/net/minecraft/src/mod_AnnoyanceFix.java
AnnoyanceFix.zip
# Allow server.properties
!jars/server.properties
# Block compiled Python
*.pyc
# Block downloaded files
runtime/bin/pypy*
!runtime/bin/
# Block .idea folder
.idea/
# Block python runtime.
runtime/bin/python/
# Block command file.
runtime/command
# Block scripts in the root folder except setup.* and createmod.*
*.bat
*.sh
!createmod.sh
!createmod.bat
# Block .iml files
*.iml