This project will be a place for everyone to practice using git branches, as well as using Github as a project management tool. This will be the first of several projects! Also, the "stuff" you write here will be used in the actual Adelie website, on the page for the Developer's Group, so please don't use junk or filler data.
- Go to the Issues page for the project and find the Issue number for you. (If you don't have one, you can create one for yourself. Copy the example for the other issues.)
- Clone the repository:
git clone git@github.com:adelieco/biographies.git
- Check out a new branch like so:
git checkout -b feature/add-kevin-bio
- While on the branch above, add a file to the
src
folder as per the convention:src/yourfirstname-yourlastname.md
. If either your first or last name has special characters like an apostrophe (likeO'Malley
) or a hyphen (likeRobert Lee-Jones
), omit the character. - In the folder, write a paragraph of 3-5 sentences with the following information. (#2 and #3 can be in whatever order, but start with #1).
- Quick description of you
- Fun fact
- Current goal as a developer.
- For example, you might write:
- Kevin is a Front-End Developer at Nulab NYC. He is currently studying machine learning and the AWS platform. He has a fat cat named Bernie and secretly really enjoys fidget spinners.
- Add a high-quality photo of yourself to the
/assets
folder, asyourfirstname.jpg
. Crop it to the shape of a square (if you don't, I will at my own discretion). If you really don't want a photo of yourself on the Adelie site later, then you can omit this step, but please share a photo if you can! - Add your changes to the stage.
# Adds all your files to the stage
git add -A
- Commit your change with a descriptive message
# Make sure your commit message includes your issue number
git commit -m "#1 Added personal bio for Kevin Oh"
# More detailed syntax might be something like this:
git commit -m "#1 Added Kevin's bio
* Added kevin-o.bio.md
* Edited some other thing
* Did some other junk"
- Push your changes to the repository.
git push origin name_of_your_branch
# For me, my branch name from earlier was feature/add-kevin-bio, so:
git push origin feature/add-kevin-bio
- Tag Kevin on the
#projects
channel of the Adelie Slack and let him know that you’ve done your task. His ID is:@adelie-ko
.
- Do not start this Phase until everyone is on the same page. On Github, create a “Pull Request” to merge your feature branch into the
development
branch. - Assign it to the dev below you in the chart at the bottom of this document. (If you’re at the bottom, do the first person).
- You will get a PR assigned to you.
- Review the PR that has been assigned to you.
- (THIS SET OF INSTRUCTIONS IS DELIBERATELY LEFT INCOMPLETE. KEVIN WILL LET YOU KNOW WHAT TO DO LATER.)
#adelie
Developer | Phase One | Phase 2 | Phase 3 |
---|---|---|---|
Kevin Oh | |||
Irma Mesa | |||
Matthew Sweeney | |||
Diomedes Lajara | |||
George Escobar | |||
Ivan Prunier | |||
Sara Son | |||
Adam Akers | |||
Drew Hill | |||
Mary Chapman | |||
Seth Jones | |||
Marce Mar | |||
Maryellen M |