GitHub 的基本使用
Resources:
git config --global user.name "Your Name"git config --global user.email happypeter1983@gmail.com
mkdir first-projcd first-projgit inittouch READMEgit add READMEgit commit -m 'first commit'git remote add origin git@github.com:lovelypeter/first-proj.gitgit push -u origin master
cat ~/.gitconfig
mv .ssh ssh.bakssh-keygen