├── windows_feature.html
├── chapter_1.md
├── new_file.md
├── another-file
└── README.md
/windows_feature.html:
--------------------------------------------------------------------------------
1 |
hello
--------------------------------------------------------------------------------
/chapter_1.md:
--------------------------------------------------------------------------------
1 | This is the content for my new file.
2 |
--------------------------------------------------------------------------------
/new_file.md:
--------------------------------------------------------------------------------
1 | This is the content for my new file.
2 |
--------------------------------------------------------------------------------
/another-file:
--------------------------------------------------------------------------------
1 | This file was created after the repo was forked.
2 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | Readme file was updated
2 | =======================
3 |
4 | GitHub Example
5 | ==============
6 |
7 | This is a simple example repository that will be used to show how to get started with GitHub.
8 |
9 | How to Contribute
10 | =================
11 |
12 | Just fork the original repo at pragmaticlearning/github-example, make your changes and send over a Pull Request.
13 |
14 |
15 |
--------------------------------------------------------------------------------