mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 17:02:41 +01:00
10 lines
266 B
Bash
10 lines
266 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
echo "src/__celerity_resource_map__.php merge=celerity" \
|
||
|
>> `dirname "$0"`/../../.git/info/attributes
|
||
|
|
||
|
git config merge.celerity.name "Celerity Mapper"
|
||
|
|
||
|
git config merge.celerity.driver \
|
||
|
'$GIT_DIR/../scripts/celerity_mapper.php $GIT_DIR/../webroot'
|