Staging
v0.8.1
swh:1:snp:c5feb7ee9221a3820c8879e85e8a18470c0b3afa
Raw File
Tip revision: e230c568c4b9a991e3175e5f65171a566fd8e39c authored by Junio C Hamano on 23 August 2013, 18:49:46 UTC
Git 1.8.4
Tip revision: e230c56
lib-prereq-FILEMODE.sh
#!/bin/sh
#
# Copyright (c) 2010 Ævar Arnfjörð Bjarmason
#

if test "$(git config --bool core.filemode)" = false
then
	say 'filemode disabled on the filesystem'
else
	test_set_prereq FILEMODE
fi
back to top