-
Notifications
You must be signed in to change notification settings - Fork 6
Installing
You will need a copy of:
Linux users should be able to install them Via your package manager Windows users can either install them manually, or make use of Apps Anywhere
On university systems (or at home if you have installed the app), you can use apps anywhere.
TODO: Walkthrough
NOTE: While you can use a GUI for this, doing stuff on the command line should be much easier.
Clone the Latest version of the project from https://github.coventry.ac.uk/aa9863/FYP-Project-Template
Command for this is:
git clone --recurse-submodules git@github.coventry.ac.uk:aa9863/FYP-Project-Template.git
The project makes use of git submodule functionality. Which means we need to clone the project in a slightly different way.
This is as simple as cloning with the --recurse-submodules
flag
Command for this is:
git clone --recurse-submodules git@github.coventry.ac.uk:aa9863/FYP-Project-Template.git
If we do a standard clone, then the Template directory exists but is empty.
git clone git@github.coventry.ac.uk:aa9863/FYP-Project-Template.git
git submodule init
git submodule update
You shouldn't need to do this, but If i make changes to the base Template you can update the submodule
git submodule update --remote
Remember to CHECK THE README file to see if any changes need to be made to the scripts
TODO: Insstructions for doing this Via whatever GUI people may want