Explanation
This is pretty vague but I'll do what I can to help.
First, while it may seem daunting at first, I suggest you learn how to do things from the command line (called terminal on OSX). This is a great way to make sure you're putting things where you really want to.
You should definitely google 'unix commands' to learn more, but here are a few important commands to help in this situation:
ls - list all files and directories (folders) in current directory
cd <input directory here without these brackets> - change directory, or change the folder you're looking in
mkdir <input directory name without brackets> - Makes a new directory (be careful, you will have to cd into the directory after you make it)
rm -r <input directory name without brackets> - Removes a directory and everything inside it
git clone <link to repo without brackets> - Clones the repository into the directory you are currently browsing.
Answer
So, on my computer, I would run the following commands to create a directory (folder) called projects within my documents folder and clone a repo there.
- Open terminal
cd documents (Not case sensitive on mac)
mkdir projects
cd projects
git clone https://github.com/seanbecker15/wherecanifindit.git
cd wherecanifindit (if I want to go into the directory)
p.s. wherecanifindit is just the name of my git repository, not a command!