1. 程式人生 > >github 提交專案指令碼

github 提交專案指令碼

 

 


#…or create a new repository on the command line

echo "# springcloud" >> README.md
git init
git add README.md
git commit -m "first commit"
git remote add origin https://github.com/account/springcloud.git
git push -u origin master

#…or push an existing repository from the command line

git remote add origin https://github.com/account/springcloud.git
git push -u origin master