Skip to content

Instantly share code, notes, and snippets.

View LarrySul's full-sized avatar
🎯
Focusing

Sule-Balogun Olanrewaju LarrySul

🎯
Focusing
View GitHub Profile
@LarrySul
LarrySul / README.md
Last active September 10, 2019 22:32 — forked from tillkruss/README.md
Junior developer code challenge for Mercatus

Mercatus code challenge

Hi there!

Please write thorough and human-readable tests for the WaitlistController.php.

  • You can use unit, feature and/or browser tests
  • Cover corner-cases / regressions
  • The tests don't actually need run
command usage
git init Creates an empty Git repository in the specified directory.
git clone <repository name> Clones a repository located at <repository name> onto your local machine.
git add <directory> Stages only the specified changes for the next commit. Replace <directory> with a <file> to change a specific file.
git add . Stages new files and modifications without deletions
git add -A Stages all changes
git add -all Equivalent to git add -A
git add -u Stages modifications and deletions without adding new files
git add --update Equivalent to git add -u
git commit -m ”<message>” Commits the staged snapshot. replace <message> with the commit message.