- In your terminal, cd into the folder you want this project to be in
cd <parentDirectory>
- Clone this repository (copy git url from github)
git clone https://github.com/nuwit/scavenger-hunt.git
- cd into the project
cd scavenger-hunt
- Create your own branch using the terminal (Hint: 'git checkout -b ')
- Remove the removeMe.txt file from the main directory using the 'rm' command in your terminal
- Commit this change with git in the terminal with the commit message "First commit"
- Open the index.html file in your browser
- Home page: The nuWiT Logo in the top left hand corner is gone! Figure out how to get it back.
- Home page: The 'Join Us' section is all screwed up. Find where there's a missing closing tag and fix it!
- Home page: The subscribe box has turned purple! Find the corresponding styles in css/main.css and change the color back to the way it was
- Try navigating to the officers page -- where did it go? Use the terminal to find where 'officers.html' has gone and put it back where it belongs. (Hint: use 'ls' and 'mv' commands)
- Events page: What happened to the event list arrows? They're way too tall. Find the corresponding styles in css/main.css and fix it.
- Gallery page: A container is too wide, causing the photos to be distorted and enabling horizontal scroll. Find the corresponding styles in css/main.css and fix it.
- Commit your changes using the commit message "fixed some bugs"
- Use the terminal to cd into the blog directory and make a new file by copying 'blogpost-template.html'. (Hint: use the 'cp' command). name this file YourLastName-YourFirstName.html. It will be your own blog post!
- Add whatever message or text you want to your blog post file (with HTML)
- Use the terminal to find the secret folder! (Hint: Use the command 'ls -as' to see hidden files).
- cd into the secret folder
- Find the secret file
- Find out what the final commit message will be by reading what's in the secret file (Use the 'more' command)
- When you are satisfied with your changes, commit and push to your branch on github. Make sure you add the new blog post file to the files git is tracking. (git push origin YourBranchName)
- Go the github repo on your browser and create a pull request to merge your branch with the master branch.