diff options
author | James Taylor <user234683@users.noreply.github.com> | 2018-07-01 21:34:49 -0700 |
---|---|---|
committer | James Taylor <user234683@users.noreply.github.com> | 2018-07-01 21:34:49 -0700 |
commit | 2696fb30c2195485b88c5a97f14251d33c9bb73a (patch) | |
tree | 76e62a38230c86734cc088cff6f2dc87b1d40390 /.gitattributes | |
parent | 98157bf1bf1223ffa7556d2d21cfac6f07675f9d (diff) | |
download | yt-local-2696fb30c2195485b88c5a97f14251d33c9bb73a.tar.lz yt-local-2696fb30c2195485b88c5a97f14251d33c9bb73a.tar.xz yt-local-2696fb30c2195485b88c5a97f14251d33c9bb73a.zip |
add .gitattributes, default deny foreign addresses
Diffstat (limited to '.gitattributes')
-rw-r--r-- | .gitattributes | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..ba03642 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,30 @@ +# Basic .gitattributes for a python repo. + +# Source files +# ============ +*.pxd text +*.py text +*.py3 text +*.pyw text +*.pyx text + +*.html text +*.xml text +*.xhtml text +*.htm text +*.css text +*.txt text + +# Binary files +# ============ +*.db binary +*.p binary +*.pkl binary +*.pyc binary +*.pyd binary +*.pyo binary + +# Note: .db, .p, and .pkl files are associated +# with the python modules ``pickle``, ``dbm.*``, +# ``shelve``, ``marshal``, ``anydbm``, & ``bsddb`` +# (among others).
\ No newline at end of file |