Features
-
Added support for executing commands in the root repository. Closes #160. (commit)
Add the
$rootRepository
option to themrgit.json
configuration file to enable this feature. Its value should be a repository GitHub identifier (the same as defining thedependencies
values). You can also define the option within the preset feature.Below, you can find a list of supported commands that take into consideration the root repository if specified:
checkout
commit
diff
exec
fetch
pull
push
status
sync
To disable executing a command in the root repository without modifying the configuration file, you can add the
--skip-root
modifier to mrgit. Example:mrgit status --skip-root
.