Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZoltan Varga <vargaz@gmail.com>2015-10-07 17:32:13 +0300
committerAlexander Köplinger <alex.koeplinger@outlook.com>2015-10-19 17:37:17 +0300
commit9f626c29bc13b5ad362d1004c1ba30c9d8d26066 (patch)
tree4894a608f4776ce5b0d251d8322b288144604266 /acceptance-tests/README.md
parent04bdf3b9332a4707d196b65deda1fdfba1b88a30 (diff)
[acceptance-tests] Add code from xamarin/mono extensions branch
This provides a "git submodule"-like tool which can be used to checkout optional repositories.
Diffstat (limited to 'acceptance-tests/README.md')
-rw-r--r--acceptance-tests/README.md14
1 files changed, 14 insertions, 0 deletions
diff --git a/acceptance-tests/README.md b/acceptance-tests/README.md
new file mode 100644
index 00000000000..d1322fc7f60
--- /dev/null
+++ b/acceptance-tests/README.md
@@ -0,0 +1,14 @@
+This directory contains functionality for handling optional non git submodule based submodules.
+
+The SUBMODULES.json file stores information about the submodules, and make targets are used to check out submodules, check their versions, and update the submodule information.
+
+By convention, submodules repositories are at the same level as the mono repository.
+
+Make targets available:
+
+make check-<module> - Checks whenever <module> is checked out and matches the version in the info file.
+make reset-<module> - Clones <module>if neccesary and checks out the revision specified in the info file.
+make bump-<module> - Updates the revision stored in the info file for <module>.
+make bump-current-<module> - Updates the revision stored in the info file for <module> to the current revision.
+make commit-bump-<module> - Same as make bump-<module>, but commits the change.
+make commit-bump-current-<module> - Same as make bump-current-<module>, but commits the change.