projects
/
drupal-init-tools.git
/ commitdiff
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
|
inline
| side by side (from parent 1:
7efd280
)
bootstrap.sh: set the core src-prefix and dst-prefix also for git format-patch
author
Antonio Ospite <ao2@ao2.it>
Mon, 27 Aug 2018 13:58:12 +0000
(15:58 +0200)
committer
Antonio Ospite <ao2@ao2.it>
Mon, 27 Aug 2018 14:04:43 +0000
(16:04 +0200)
libexec/bootstrap.sh
patch
|
blob
|
history
diff --git
a/libexec/bootstrap.sh
b/libexec/bootstrap.sh
index
9dc149f
..
bb1968e
100755
(executable)
--- a/
libexec/bootstrap.sh
+++ b/
libexec/bootstrap.sh
@@
-243,8
+243,10
@@
chmod 555 sites/default
if [ -d core/.git ];
then
git -C core/ config --local alias.core-diff "diff --src-prefix=a/core/ --dst-prefix=b/core/"
if [ -d core/.git ];
then
git -C core/ config --local alias.core-diff "diff --src-prefix=a/core/ --dst-prefix=b/core/"
- echo "Added a 'git core-diff' command to the drupal/core repository clone."
- echo "This command helps creating core patches ready for upstream."
+ git -C core/ config --local alias.core-format-patch "format-patch --src-prefix=a/core/ --dst-prefix=b/core/"
+ echo "Added 'git core-diff' and 'git core-format-patch' commands to the drupal/core"
+ echo "repository clone. These commands help creating core patches ready for upstream"
+ echo "in a split-core setup."
fi
popd
fi
popd