summary refs log tree commit diff stats
path: root/.gitignore
diff options
context:
space:
mode:
authornfnty <git@nfnty.se>2017-01-28 17:40:55 +0100
committernfnty <git@nfnty.se>2017-01-28 17:42:16 +0100
commit6a788eb1b280132b64ce648254c4bfe5edc2c12d (patch)
tree3d3d7fee1ced5f8ae668e13ffbffd1e729a080a5 /.gitignore
parent0f657d5940f38bc4f50350c16ca8d2ef01100775 (diff)
downloadranger-6a788eb1b280132b64ce648254c4bfe5edc2c12d.tar.gz
gitignore: Add leading `/`
Diffstat (limited to '.gitignore')
-rw-r--r--.gitignore15
1 files changed, 9 insertions, 6 deletions
diff --git a/.gitignore b/.gitignore
index dbbb1ce0..9dbf38df 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,9 +1,12 @@
-*~
 *.pyc
 *.pyo
+
+*~
+
 /.cache
-stuff/*
-doc/ranger.1.html
-build
-pytestdebug.log
-install_log.txt
+/build
+/doc/ranger.1.html
+/install_log.txt
+/pytestdebug.log
+
+/stuff/*
a> 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255