A simple wordle clone made in Python targeted at beginners.
git remote add upstream https://github.com/AHS-Hack-Club/wordle-clone.git # Adds the main repo to your project with the name "upstream"
git fetch upstream # Pull changes from upstream repo you added
git add . # Add all the files you changed
git stash # Save your changes temporarily
git merge upstream/main # Take changes and put them in your repository
git add . # Add all the files you changed
git commit -m "Describe what u did in a few words" # Create a commit with a readable message
git push