If you want to work on the project, you have to use Xcode or git to download the project.
Every, feature you'll be working on should be worked on inside a new branch. I (Gigi) suggest to name the branch with your first name initial and the number of branch you created. Like if this is the first branch for Domenico, he should name it D-001.
## Download the project
I (Gigi) recommend to use the git command line utility (already installed on your MacBook alongside Xcode).
git clone https://github.com/GEDAF/NegroniIf this command needs you to login, I (Gigi) suggest to use gh (you can install it with brew if you have brew with brew install gh).
With gh, just type:
gh auth loginAnd follow the instructions.
Then you can retry the previous command to clone the repository. I (Gigi) also recommend to NOT clone it in your user directory.
mkdir -p ~/DeveloperThis command will help you by creating a "Developer" folder in your user directory.
Then you can resume the process:
cd ~/Developer
git clone https://github.com/GEDAF/NegroniIf you want the easy step to open the project just type:
open ~/Developer/Negroni/Negroni.xcodeprojThat's it.