1 、
create a new repository on the command line
例如: 要新建一个helloworld项目,
先
mkdir helloworld
cd helloworld
然后
echo “# helloworld” >> README.md
git init
git add README.md
git commit -m “first commit”
git remote add origin git@github.com:readying/helloworld.git
git push -u origin master