├── .gitignore ├── main.js ├── style.css ├── index.html └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | notes.txt -------------------------------------------------------------------------------- /main.js: -------------------------------------------------------------------------------- 1 | console.log('JS loaded') 2 | console.log('hello!') -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- 1 | body { 2 | background-color: #333; 3 | color: whitesmoke; 4 | display: grid; 5 | place-content: center; 6 | } -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | git Playground 9 | 10 | 11 | 12 | 13 | 14 |

Hello

15 | 16 | 17 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # "Git Tutorial for Absolute Beginners" 2 | 3 | --- 4 | 5 | ### Author Links 6 | 7 | 👋 Hello, I'm Dave Gray. 8 | 9 | 📚 [My Courses](https://courses.davegray.codes/) 10 | 11 | ✅ [Check out my YouTube Channel with hundreds of tutorials](https://www.youtube.com/DaveGrayTeachesCode). 12 | 13 | 🚩 [Subscribe to my channel](https://bit.ly/3nGHmNn) 14 | 15 | ☕ [Buy Me A Coffee](https://buymeacoffee.com/DaveGray) 16 | 17 | 🚀 Follow Me: 18 | 19 | - [Twitter](https://twitter.com/yesdavidgray) 20 | - [LinkedIn](https://www.linkedin.com/in/davidagray/) 21 | - [Blog](https://yesdavidgray.com) 22 | - [Reddit](https://www.reddit.com/user/DaveOnEleven) 23 | 24 | --- 25 | 26 | ### 📚 Free Git Cheatsheat 27 | 28 | 🔗 [Download the Git Cheatsheat for Beginners](https://courses.davegray.codes/git-cheatsheet-for-beginners) 29 | 30 | --- 31 | 32 | ### Description 33 | 34 | 📺 [YouTube Video](https://youtu.be/CvUiKWv2-C0) for this repository. 35 | 36 | --- 37 | 38 | ### 💻 Source Code 39 | 40 | This repository is to be used as a _git playground_ for beginners to practice their newly learned skills. Clone the repository, modify files, add files, commit files.. practice all the things! 41 | 42 | --- 43 | 44 | ### 🎓 Academic Honesty 45 | 46 | **DO NOT COPY FOR AN ASSIGNMENT** - Avoid plagiarism and adhere to the spirit of this [Academic Honesty Policy](https://www.freecodecamp.org/news/academic-honesty-policy/). 47 | 48 | --- 49 | 50 | ### 📚 Tutorial References 51 | 52 | - 🔗 [Git Official Website](https://git-scm.com/) 53 | - 🔗 [GitHub](https://github.com/) 54 | - 🔗 [MDN: Git & GitHub](https://developer.mozilla.org/en-US/docs/Learn/Tools_and_testing/GitHub) 55 | 56 | ### ⚙ VS Code Extensions I Use: 57 | 58 | - 🔗 [vscode-icons VS Code Extension](https://marketplace.visualstudio.com/items?itemName=vscode-icons-team.vscode-icons) 59 | - 🔗 [Github Themes VS Code Extension](https://marketplace.visualstudio.com/items?itemName=GitHub.github-vscode-theme) 60 | --------------------------------------------------------------------------------