You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'd like to keep multiple sqitch projects with their own sqitch.conf files as sibling directories in a single git repo and be able to run, for example, sqitch -C project-a/ deploy … and sqitch -C project-b/ deploy … instead of (cd project-a/; sqitch deploy …). Both git and tar have -C options which have the effect of ~immediately changing the working directory when they start:
-C <path>
Run as if git was started in <path> instead of the current working
directory. When multiple -C options are given, each subsequent
non-absolute -C <path> is interpreted relative to the preceding -C
<path>.
-C, --directory=DIR
Change to DIR before performing any operations. This option is
order-sensitive, i.e. it affects all options that follow.
The text was updated successfully, but these errors were encountered:
I'd like to keep multiple sqitch projects with their own
sqitch.conf
files as sibling directories in a single git repo and be able to run, for example,sqitch -C project-a/ deploy …
andsqitch -C project-b/ deploy …
instead of(cd project-a/; sqitch deploy …)
. Both git and tar have-C
options which have the effect of ~immediately changing the working directory when they start:The text was updated successfully, but these errors were encountered: