Skip to content

Commit 8e394fc

Browse files
committedNov 14, 2014
init
first time, copy from svn to github
0 parents  commit 8e394fc

File tree

471 files changed

+158400
-0
lines changed

Some content is hidden

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

471 files changed

+158400
-0
lines changed
 

‎.gitattributes

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# Auto detect text files and perform LF normalization
2+
* text=auto
3+
4+
# Custom for Visual Studio
5+
*.cs diff=csharp
6+
*.sln merge=union
7+
*.csproj merge=union
8+
*.vbproj merge=union
9+
*.fsproj merge=union
10+
*.dbproj merge=union
11+
12+
# Standard to msysgit
13+
*.doc diff=astextplain
14+
*.DOC diff=astextplain
15+
*.docx diff=astextplain
16+
*.DOCX diff=astextplain
17+
*.dot diff=astextplain
18+
*.DOT diff=astextplain
19+
*.pdf diff=astextplain
20+
*.PDF diff=astextplain
21+
*.rtf diff=astextplain
22+
*.RTF diff=astextplain

‎.gitignore

+88
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,88 @@
1+
#common files
2+
*.jpg
3+
*.svn-base
4+
reconstruction/x64/
5+
CloudOptimization/x64/
6+
Kinect2Cloud/x64/
7+
dlls/
8+
.svn/
9+
10+
# Compiled Object files
11+
*.slo
12+
*.lo
13+
*.o
14+
*.obj
15+
*.ipch
16+
*.pdb
17+
*.exp
18+
*.suo
19+
*.opensdf
20+
*.sdf
21+
22+
23+
24+
# Compiled Dynamic libraries
25+
*.so
26+
*.dylib
27+
#*.dll
28+
29+
# Fortran module files
30+
*.mod
31+
32+
# Compiled Static libraries
33+
*.lai
34+
*.la
35+
*.a
36+
#*.lib
37+
38+
# Executables
39+
*.exe
40+
*.out
41+
*.app
42+
43+
# =========================
44+
# Operating System Files
45+
# =========================
46+
47+
# OSX
48+
# =========================
49+
50+
.DS_Store
51+
.AppleDouble
52+
.LSOverride
53+
54+
# Icon must end with two \r
55+
Icon
56+
57+
# Thumbnails
58+
._*
59+
60+
# Files that might appear on external disk
61+
.Spotlight-V100
62+
.Trashes
63+
64+
# Directories potentially created on remote AFP share
65+
.AppleDB
66+
.AppleDesktop
67+
Network Trash Folder
68+
Temporary Items
69+
.apdisk
70+
71+
# Windows
72+
# =========================
73+
74+
# Windows image file caches
75+
Thumbs.db
76+
ehthumbs.db
77+
78+
# Folder config file
79+
Desktop.ini
80+
81+
# Recycle Bin used on file shares
82+
$RECYCLE.BIN/
83+
84+
# Windows Installer files
85+
*.cab
86+
*.msi
87+
*.msm
88+
*.msp

0 commit comments

Comments
 (0)
Please sign in to comment.