Reverse Captcha is the second year group project for team 35 at the University of Nottingham, working with industry sponsor Unidays. Reverse Captcha is...
todo! finish writing the readme
YOU WILL NEED TO CHANGE THE PARTS IN SQUARE BRACKETS
This will download the repository into a new folder called [NAME_OF_FOLDER]
git clone https://projects.cs.nott.ac.uk/comp2002/2023-2024/team35_project.git [NAME_OF_FOLDER]
cd [NAME_OF_FOLDER]This will tell git what user credentials to use when committing and pushing.
git config --local user.name "[ENTER YOUR NAME]" # for example "Owen Seary"
git config --local user.email "[YOUR UNI USERNAME]@exmail.nottingham.ac.uk" # for example "psyos8@exmail.nottingham.ac.uk"This will store your username and password so that you don't have to keep inputting them
git config --local credential.helper store
git pullThe main branch is protected, so you won't be able to push to it directly.
git checkout dev- Thou shalt not commit your API keys into the git repository
- The git commit message shall not be empty
- Thou shalt not use
--force - Thou shalt not leave
<<<<<<< HEADin a merge - Commit little and often
I will be following this, and recommend the rest of you do the same (it is the instructions given for COMP1003).