...
- Create a BitBucket account (https://bitbucket.org/)
- Fill out the TIME Source Code Licence Agreement and email it to Geoff Davis
- After we receive your completed Licence Agreement we will send you a BitBucket invitation – click on the link in the invitation and log in after creating an account
- Install SourceTree (https://www.sourcetreeapp.com/)
- Restart your computer
Note: Please don’t include special characters into your username or password (particularly ‘:’, ‘/’, ‘\’, ‘.’ or ‘@’).
...
- Fetch changes from the central repository to your local repository
- Pull your local code to the latest version on your local repository
You can Pull then Update all Fetch then Checkout all of the repositories using hgallsg.batexe:
This also means the process for making changes requires a two-step process to make changes to the central repository. The general process will be:
- Commit changes into your local repository
- Pull / Rebase changes from the server
- Merge the changes into your repository
- Push the changes back to the server.
...
Changes for the core repositories are made by doing a Pull Request. Details of how to do a Pull Request can be found here: Fork a Repo, Compare Code and Create a Pull Request
Download Video: Hg Demonstration Video.mp4
Troubleshooting
Issue: hg update fails complaining about uncommitted changes.
Answer: You may need to either Revert these changes (getting rid of them), or Commit the changes to your local repository before you can update. For more advanced users it is possible to Shelve the changes.
Issue: hg times out while pulling.
Answer: try with a small repository first. If the issue persists it could mean that you need to configure hg to understand your proxy.
In this case you will need to go to the .hg\hgrc file in each repository and add to the end the lines
...
Compiling
To compile you will need Visual Studio 2017 with the .net 4.7.2 SDK.
...