== Accessing the Repository == The DWT repository is hosted at [https://github.com github]. The original mercurial repository is split up in several smaller repositories, one for each project. All repositories are under the organization: https://github.com/d-widget-toolkit. There is one "super repository", [https://github.com/d-widget-toolkit/dwt DWT], which uses git submodules to include the most common repositories and contains the build script. To get a new copy of the repository, you need to 'clone' them to your local hard disk. With the command line client you can do that with {{{ git clone git://github.com/d-widget-toolkit/dwt.git }}} To clone the submodules run: {{{ git submodule init git submodule update }}} For more info about git submodule: http://help.github.com/submodules/ See also the [wiki:Contribution Contribution] info page. == Old Repositories == DWT uses the [http://www.selenic.com/mercurial/wiki/ Mercurial version control system]. '''Note windows users:'''[[br]] Beside the official binary, there is "batteries include" installer [https://sourceforge.net/project/showfiles.php?group_id=188871&package_id=243861 here].[[br]] You can also use the [http://tortoisehg.sourceforge.net/ Windows Explorer Extension TortoiseHG]. To get a new copy of the repository, you need to 'clone' them to your local harddisk. With the command line client you can do that with {{{ hg clone http://hg.dsource.org/projects/dwt-linux hg clone http://hg.dsource.org/projects/dwt-win hg clone http://hg.dsource.org/projects/dwt-addons hg clone http://hg.dsource.org/projects/dwt-samples }}} If you later want to do an update, change into that repository and do {{{ hg pull -u }}} See also the [wiki:Contribution Contribution] info page. Type "hg view" to see a GUI view of all changes to the source listed by revision. If no gui shows up, you probably need a TCL/TK installation or the hgk tool is missing.