├── .DS_Store ├── .gitignore ├── README.md ├── ShoppingList.txt └── apples.txt /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCurryMan/GithubIntro/31aecc2c0f7ab29baaef022e98ed634713fde125/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Excluding passwords.txt 2 | 3 | *.txt 4 | !apples.txt 5 | 6 | # This is a comment 7 | # This is another comment -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # GithubIntro 2 | A basic introduction to teaching Git and GitHub 3 | -------------------------------------------------------------------------------- /ShoppingList.txt: -------------------------------------------------------------------------------- 1 | Shopping List: 2 | 3 | Apples 4 | Oranges 5 | Bananas 6 | Cherries 7 | Carrots 8 | Cereal 9 | Cucumbers 10 | Eggplants 11 | English Walnuts 12 | Garbanzo Beans 13 | Avocado 14 | Juice 15 | Walnuts 16 | Cranberries 17 | Chocolate 18 | Blueberries 19 | Blue Bananas 20 | Mangos 21 | Lychee -------------------------------------------------------------------------------- /apples.txt: -------------------------------------------------------------------------------- 1 | Fuji 2 | Gala 3 | --------------------------------------------------------------------------------