Frequently Asked Question
Getting Started with Github
Last Updated 7 years ago
1. Sign up for Github
2. Install Git
3. Configure Github to use your username
4. Configure Github to use your email
git config --global user.email "emailgoeshere"
5. Click New Repisotry on GitHub
6. git clone (use the field HTTPS clone url from github website)
ex: https://gitbub.com/username/newrepo.git
7. git add newfile.py
8. git commit -m "updated readme file"
9. git push
2. Install Git
sudo apt-get install git
3. Configure Github to use your username
git config --global user.name "usernamegoeshere"
4. Configure Github to use your email
git config --global user.email "emailgoeshere"
5. Click New Repisotry on GitHub
6. git clone (use the field HTTPS clone url from github website)
ex: https://gitbub.com/username/newrepo.git
7. git add newfile.py
8. git commit -m "updated readme file"
9. git push