Summary: Buck has not relied on the .buckversion file for a while now. I am trying to clean up the number of configs at the root of the cell for buck. This diff attempts to remove .buckversion code referecnes from fbsource/xplat Instead of calling cat .buckversion to get the buckversion hash, you can call buck --fast-version which parses the buck-java11 file without downloading buck. Alternatively, you can also do something like cat .buck-java11 | grep -o -E -e "[0-9a-f]{40}" | head -1 to get the buckversion hash. Reviewed By: stepancheg Differential Revision: D28579639 fbshipit-source-id: 6231e16df41f3e403098576e4bfd5d5a2fd38a14
68 lines
961 B
Plaintext
68 lines
961 B
Plaintext
.DS_STORE
|
|
|
|
/buck-cache/
|
|
/buck-out/
|
|
/.buckconfig.local
|
|
/.buckd
|
|
/gentest/test.html
|
|
.buck-java11
|
|
|
|
# Jekyll
|
|
/.sass-cache/
|
|
/_site/
|
|
|
|
# Visual studio code
|
|
.vscode
|
|
*.pdb
|
|
*.tlog
|
|
*.obj
|
|
*.pch
|
|
*.log
|
|
*.orig
|
|
|
|
# Xcode
|
|
## Build generated
|
|
build/
|
|
DerivedData/
|
|
|
|
## Various settings
|
|
*.pbxuser
|
|
!default.pbxuser
|
|
*.mode1v3
|
|
!default.mode1v3
|
|
*.mode2v3
|
|
!default.mode2v3
|
|
*.perspectivev3
|
|
!default.perspectivev3
|
|
xcuserdata/
|
|
|
|
## Other
|
|
*.moved-aside
|
|
*.xcuserstate
|
|
|
|
## Obj-C/Swift specific
|
|
*.hmap
|
|
*.ipa
|
|
*.dSYM.zip
|
|
*.dSYM
|
|
|
|
# CocoaPods
|
|
#
|
|
# We recommend against adding the Pods directory to your .gitignore. However
|
|
# you should judge for yourself, the pros and cons are mentioned at:
|
|
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
|
|
#
|
|
Pods/
|
|
|
|
# Carthage
|
|
#
|
|
# Add this line if you want to avoid checking in source code from Carthage dependencies.
|
|
# Carthage/Checkouts
|
|
|
|
Carthage/Build
|
|
|
|
# Gradle
|
|
.gradle
|
|
# NDK/CMake
|
|
.externalNativeBuild
|