└── README.md /README.md: -------------------------------------------------------------------------------- 1 | # Pre Course Git Fu 2 | [Pre Class Video](https://youtu.be/ZihgMcrHOF4) 3 | ## Terms for learning Git 4 | * Repository - 5 | * Git - Version Control - 6 | * Clone - 7 | * Fork - 8 | * History - 9 | * Staging - 10 | * Remote - 11 | * Commit - 12 | * Push - 13 | 14 | ## Steps to our Lamba School Git Flow 15 | 1. Fork repository 16 | 2. `git clone` w/ the repository URL 17 | 3. After Changes Made: `git status` 18 | 4. `git add ` 19 | 5. `git status` to check what is staged 20 | 6. `git commit -m 'made changes to the Readme'` 21 | 7. `git push` 22 | --------------------------------------------------------------------------------