Version Control
GitHub

Using VCS (GitHub)

The ASRR Github is located at: https://github.com/ASRRtechnologies (opens in a new tab)

To clone the repository using command line (terminal), use the following commands:

  1. Navigate to the directory where you want to clone the repository
cd *directory path*
cd .. # to go back one directory
ls # to list all files and directories in the current directory

You can create a directory using the following command:

mkdir *directory name*
  1. Clone the repository using the following command
git.mdx clone *repository url*
  1. Open the project in your IDE (Integrated Development Environment) of choice

Using IntelliJ IDEA

IntelliJ IDEA is the recommended IDE for back-end projects. Install it using the Jetbrains Toolbox: https://www.jetbrains.com/toolbox-app/ (opens in a new tab)

IntelliJ needs mac command line tools to clone using git. To install command line tools, use the following command:

xcode-select --install
  1. Open IntelliJ IDEA
  2. Click on "Get from Version Control"
  3. Enter the repository URL and click "Clone"
  4. Click "Yes" to open the project