We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3fabd75 commit 546cec9Copy full SHA for 546cec9
tests/_test_helper.bash
@@ -43,7 +43,7 @@ function encrypt_named_file {
43
if [ "$content" ]; then
44
echo "$content" > $filename
45
fi
46
- echo "$filename filter=crypt diff=crypt" >> .gitattributes
+ echo "$filename filter=crypt diff=crypt merge=crypt" >> .gitattributes
47
git add .gitattributes $filename
48
git commit -m "Encrypt file $filename"
49
}
tests/test_init.bats
@@ -17,7 +17,7 @@ SETUP_SKIP_INIT_TRANSCRYPT=1
17
init_transcrypt
18
[ -f .gitattributes ]
19
run cat .gitattributes
20
- [ "${lines[0]}" = "#pattern filter=crypt diff=crypt" ]
+ [ "${lines[0]}" = "#pattern filter=crypt diff=crypt merge=crypt" ]
21
22
23
@test "init: creates scripts in .git/crypt/" {
0 commit comments