├── README.md ├── dev_roster.txt ├── example.cs ├── example_file.py └── random file.png /README.md: -------------------------------------------------------------------------------- 1 | # developers 2 | 3 | This is the remote repository for the academy devs (students) 4 | 5 | The purpose of this repository is for students to: 6 | 1. Practice forking projects to their GitHub accounts. 7 | 2. Cloning the project to their local machine. 8 | 3. Commit updates. 9 | 4. Push changes back to their remote repository. 10 | -------------------------------------------------------------------------------- /dev_roster.txt: -------------------------------------------------------------------------------- 1 | 2 | -The Tech Academy - Developer Team Roster 3 | - 4 | -Please type your first name and last initial on the proceeding lines... 5 | 6 | Samme Q. 7 | Peter R. 8 | Max J. 9 | John V. 10 | Andrew B. 11 | Aaron M. 12 | Joshua B. 13 | Dustin S. 14 | -------------------------------------------------------------------------------- /example.cs: -------------------------------------------------------------------------------- 1 | This is just an example file to fill up this repo and make it more realistic 2 | -------------------------------------------------------------------------------- /example_file.py: -------------------------------------------------------------------------------- 1 | This is just an example file to fill up this repo and make it more realistic 2 | -------------------------------------------------------------------------------- /random file.png: -------------------------------------------------------------------------------- 1 | This is just an example file to show that there are some files in this repo. 2 | --------------------------------------------------------------------------------