- Create a folder that you want as the root directory of the project. Open a terminal in that folder.
- Run the command
git clone https://github.com/kingsleyzhong/seng300-iteration2.git
- This will create a subfolder called
seng300-project
and inside will be the hardware project, the software project and the software test project. - In Eclipse, go to
File > Import
then search for / click onExisting Projects into Workspace
- Select the
seng300-project
folder and check all 3 of the projects. Leave everything else as-is. - Everything should already be setup, to test your configuration, go to the test project and run the
SelfCheckoutSystemTest
file, it should pass without errors. - Create a new branch called
dev-<what you're doing>
, commit to that branch.
-
Commit to your own branch
-
If you need the latest changes from main, simply pull from the main branch (using local git, NOT GITHUB)
-
When you are ready to merge to main, open a pull request in GitHub
Hi