223.2 Setting up the development environment
Set up your project folder, version control, and GitHub connection from your IDE’s terminal.
Initialising Git in your project folder
git initecho "__pycache__/" >> .gitignore
echo "*.pyc" >> .gitignore
git add .gitignoreConfiguring Git (first time only)
git config --global user.name "Your Name"
git config --global user.email "[email protected]"Creating an SSH key for GitHub
Connecting your project to GitHub
Last updated
Was this helpful?