summaryrefslogtreecommitdiffstats
path: root/Readme.md
diff options
context:
space:
mode:
authorSlávek Banko <slavek.banko@axis.cz>2018-08-12 16:50:48 +0200
committerSlávek Banko <slavek.banko@axis.cz>2018-08-12 16:54:50 +0200
commitf6958bcbb69f1bff6f87528774153ae10e697ba0 (patch)
tree657ca73c02c064023a80c6f0b8bb0e07d6b74e2c /Readme.md
parentf425623276a8ce067ad8cdee641f1464c2752cb5 (diff)
downloadtde-f6958bcbb69f1bff6f87528774153ae10e697ba0.tar.gz
tde-f6958bcbb69f1bff6f87528774153ae10e697ba0.zip
Add simple readme with instructions for cloning the entire repository treer14.0.5
Signed-off-by: Slávek Banko <slavek.banko@axis.cz> (cherry picked from commit 62a4b15210d17069a7a46e6dfbd5d8f471967657)
Diffstat (limited to 'Readme.md')
-rw-r--r--Readme.md28
1 files changed, 28 insertions, 0 deletions
diff --git a/Readme.md b/Readme.md
new file mode 100644
index 000000000..fbad15441
--- /dev/null
+++ b/Readme.md
@@ -0,0 +1,28 @@
+# Trinity Desktop Environment GIT Repositories
+
+TDE is a comprehensive desktop environment that includes both
+core packages and applications designed for it.
+
+The complete source code is split into many individual GIT repositories,
+connected together into a tree structure of modules and submodules. The
+main *TDE* repository provides the entry point to the root of such tree,
+simplifying navigation and cloning operation of the complete TDE code.
+
+TDE packaging repository contains files designed to create source and
+binary packages for distributions such as Debian, Fedora, and so on.
+
+
+## Check out the complete TDE source code
+
+To check out the complete source tree from GIT,
+you can use the following procedure:
+
+```
+git clone https://mirror.git.trinitydesktop.org/gitea/TDE/tde
+git clone https://mirror.git.trinitydesktop.org/gitea/TDE/tde-packaging
+cd tde
+git submodule init -- scripts
+git submodule update -- scripts
+./scripts/switch_all_submodules_to_head_and_clean anonymous
+
+```