diff options
author | Slávek Banko <[email protected]> | 2018-08-12 16:50:48 +0200 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2018-08-12 16:54:11 +0200 |
commit | 62a4b15210d17069a7a46e6dfbd5d8f471967657 (patch) | |
tree | 1a42f901edd4fa0943dcc39fee03f065d9f5c4fa /Readme.md | |
parent | 06d851e65bc4ccad32f0316474b7c03d40f08189 (diff) | |
download | tde-62a4b15210d17069a7a46e6dfbd5d8f471967657.tar.gz tde-62a4b15210d17069a7a46e6dfbd5d8f471967657.zip |
Add simple readme with instructions for cloning the entire repository tree
Signed-off-by: Slávek Banko <[email protected]>
Diffstat (limited to 'Readme.md')
-rw-r--r-- | Readme.md | 28 |
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 + +``` |