forked from isomorphic-git/isomorphic-git
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitignore
146 lines (130 loc) · 2.29 KB
/
.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
# stuff that gets generated during test setup
/__tests__/__fixtures__/.superblock.txt
/__tests__/__fixtures__/index.json
# Dist
/http
/index.cjs
/index.d.ts
/index.js
/index.umd.min.js
/index.umd.min.d.ts
/index.umd.min.js.map
/internal-apis.js
/internal-apis.d.ts
/internal-apis.cjs
/internal-apis.umd.min.js
/internal-apis.umd.min.js.map
/dist
# Test run artifacts
/coverage
/junit
/browser-tests.json
/size_report.html
/__tests__/__examples__/**
# PGP misc
openpgp.store/
private.key
# Website Stuff
/website/build/
/website/node_modules
/website/static/js/isomorphic-git
/website/static/js/codemirrorify.js
/website/translated_docs
/website/yarn.lock
/website/i18n/*
!website/i18n/en.json
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
# Runtime data
pids
*.pid
*.seed
*.pid.lock
# Dependency directories
node_modules
# Optional npm cache directory
.npm
# Optional eslint cache
.eslintcache
# Optional REPL history
.node_repl_history
# Output of 'npm pack'
*.tgz
# Yarn Integrity file
.yarn-integrity
# dotenv environment variables file
.env
# Webstorm development environment
.idea/
# Vim swap files
*.swp
*.swo
# AUTO-GENERATED DOCS --- DO NOT EDIT BELOW THIS LINE
docs/abortMerge.md
docs/add.md
docs/addNote.md
docs/addRemote.md
docs/annotatedTag.md
docs/branch.md
docs/checkout.md
docs/clone.md
docs/commit.md
docs/currentBranch.md
docs/deleteBranch.md
docs/deleteRef.md
docs/deleteRemote.md
docs/deleteTag.md
docs/expandOid.md
docs/expandRef.md
docs/fastForward.md
docs/fetch.md
docs/findMergeBase.md
docs/findRoot.md
docs/getConfig.md
docs/getConfigAll.md
docs/getRemoteInfo.md
docs/getRemoteInfo2.md
docs/hashBlob.md
docs/indexPack.md
docs/init.md
docs/isDescendent.md
docs/isIgnored.md
docs/listBranches.md
docs/listFiles.md
docs/listNotes.md
docs/listRemotes.md
docs/listServerRefs.md
docs/listTags.md
docs/log.md
docs/merge.md
docs/packObjects.md
docs/pull.md
docs/push.md
docs/readBlob.md
docs/readCommit.md
docs/readNote.md
docs/readObject.md
docs/readTag.md
docs/readTree.md
docs/remove.md
docs/removeNote.md
docs/renameBranch.md
docs/resetIndex.md
docs/resolveRef.md
docs/setConfig.md
docs/status.md
docs/statusMatrix.md
docs/tag.md
docs/updateIndex.md
docs/version.md
docs/walk.md
docs/writeBlob.md
docs/writeCommit.md
docs/writeObject.md
docs/writeRef.md
docs/writeTag.md
docs/writeTree.md