How to upload code to github
Resource:
Download cmder full version https://cmder.net/
open cmder at C:\cmder
Cmder will initialize some program, wait until the sign λ show up.
git --version
git config --global user.name "your name"
git config --global user.email “e-mail address”
cd hello-git
git init
ls -la
git status
git add hello.py
git status
git commit -m "Init hello.py"
git status
git remote add origin https://github.com/currysesame/sort_method
git status
git push -u origin master