fix(gitignore): Add dist_git_hash
dist_git_hash is used in distribution, and might also be needed if git is unavailable or broken (for example certain bind-mounts into docker containers or use of tools such as jj). One thing you absolutely mustn't do, however, is commit it. It overrides future git commit detection, which would subtly cause caching and/or version issues for everyone. Let's gitignore it to avoid that. Signed-off-by: Skyler Grey <skyler.grey@collabora.com> Change-Id: I9cf5412bf6693afab7cb7b0ca2a8a377575ed929
This commit is contained in:
parent
ae20bc5ad4
commit
1ecf31df40
1 changed files with 2 additions and 1 deletions
3
.gitignore
vendored
3
.gitignore
vendored
|
@ -135,8 +135,9 @@ zstdlib-symlink
|
||||||
ICU.dat
|
ICU.dat
|
||||||
ios/Mobile/Assets.xcassets/AppIcon.appiconset
|
ios/Mobile/Assets.xcassets/AppIcon.appiconset
|
||||||
|
|
||||||
# iOS app build number
|
# build numbers/versions
|
||||||
BUNDLE-VERSION
|
BUNDLE-VERSION
|
||||||
|
/dist_git_hash
|
||||||
|
|
||||||
# android stuff
|
# android stuff
|
||||||
/android/lib/src/main/assets/dist
|
/android/lib/src/main/assets/dist
|
||||||
|
|
Loading…
Reference in a new issue