| Level Navigation: 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10⚡ | 11⚡ | 12⚡ | 13⚡ | 14⚡ | 15 | 16 | 17 | 18⚡ | 19 | 20 |
User Story: As a developer, I want to set up version control so that I can track changes and share my Mad Libs project on GitHub.
Initialize version control and push your project to GitHub.
git init)git add .)Need help with git? Check out these snippets:
git init to initialize repositorygit add . to add all filesgit commit -m "message" to commit changesgit push to push to remote repositorygit status - you should see “On branch main” and “nothing to commit, working tree clean”git log --oneline - you should see your commit message