Caution
Please do not create a pull request on the main project or fork it! Your code won't be private!
The application exercise is configured for Eclipse, IntelliJ and VS Code IDEs, but you are free to use other development environments (or none at all).
Before you can start programming, you need to prepare the application exercise properly. There are three ways to do this:
Tip
GitHub templates are the quickest way to set up your project.
Once you have prepared your project, there are a few steps you need to take in Git. If you have never used Git before, you will need to install it first.
Then open a console (e.g. cmd
) that supports Git. If you are unsure, run git --version
. Then run the following commands:
git clone https://github.com/[GitHub-Benutzername]/[Repository-Name].git # Insert the link from the HTTPS here
cd [Repository-Name] # Here is the name of your repository, e.g. AEB-application-exercise
git checkout -b dev # Swaps to the branch dev
Important
This option is more suitable for experts, as you will need to be familiar with Git and the source host.
Also you can of course clone the application exercise and push or import it into your own private repository. Your code does not need to be hosted on GitHub. You are free to use other providers. You just need to make sure that we have access to your code and that it is private.
Please work in a branch called dev
to compare your changes better.