- Python
- VS Code/terminal
- GIT
- Open "Git Bash" or Terminal
- [Do not include the parethesis and change the contents inside with your own]
git config --global user.name "Your Name" - [Do not include the parethesis and change the contents inside with your own]
git config --global user.email "Your@email.com"
- Open "Git Bash"
- Start keyt agent by typing
eval "$(ssh-agent -s)" - Create SSH Key, [Do not include the parethesis and change the contents inside with your own]
ssh-keygen -t ed25519 -C "youremail@example.com" - Copy SSH key by typing
clip < ~/.ssh/id_ed25519.pub - Go to GitHub and add the SSH key in your account settings
- Go back to "Git Bash" and type this to confirm your SSH key was added
ssh -T git@github.com
- Initialize Git
git init git status - Add both repositories to your pull/fetch respectively
git remote add origin {RAS Github Repo} git remote set-url --push origin {Your Repo} git remote -v - Grab the files from the RAS repository
git pull origin main - Save changes and make a "commit" for your repository
git add . git commit - m “+ Python Hangman” - Push your changes to your own repository
git push origin master git log - Have fun playing Hangman :)