diff options
author | 2018-05-23 21:49:10 +0200 | |
---|---|---|
committer | 2018-05-23 21:50:42 +0200 | |
commit | ae73b78935bf26515eccd1609bcf5bea43cb8451 (patch) | |
tree | 031d1a06c3e7d7b25a9b246a95ce04c81b756f56 /.gitignore | |
parent | Initial commit (diff) | |
download | wireguard-apple-ae73b78935bf26515eccd1609bcf5bea43cb8451.tar.xz wireguard-apple-ae73b78935bf26515eccd1609bcf5bea43cb8451.zip |
Initial project setup.
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..b70dc04 --- /dev/null +++ b/.gitignore @@ -0,0 +1,55 @@ +# Xcode +# +# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore + +.DS_Store +.idea + +## Build generated +build/ +DerivedData + +## Various settings +*.pbxuser +!default.pbxuser +*.mode1v3 +!default.mode1v3 +*.mode2v3 +!default.mode2v3 +*.perspectivev3 +!default.perspectivev3 +xcuserdata + +## Other +*.xccheckout +*.moved-aside +*.xcuserstate +*.xcscmblueprint + +## Obj-C/Swift specific +*.hmap +*.ipa + +# CocoaPods +# +# We recommend against adding the Pods directory to your .gitignore. However +# you should judge for yourself, the pros and cons are mentioned at: +# http://guides.cocoapods.org/using/using-cocoapods.html#should-i-ignore-the-pods-directory-in-source-control +# +Pods/ + +# Carthage +# +# Add this line if you want to avoid checking in source code from Carthage dependencies. +# Carthage/Checkouts + +Carthage/Build + +# Fastlane +*.app.dSYM.zip +*.mobileprovision +fastlane/report.xml +fastlane/screenshots +fastlane/test_output +Preview.html +output
\ No newline at end of file |