现在的位置: 首页 > 综合 > 正文

github的一般使用介绍

2019年05月25日 ⁄ 综合 ⁄ 共 382字 ⁄ 字号 评论关闭


(1)git config --gloable user.email "xx@xx.com"/user.name "xx"


Create a new repository on the command line

touch README.md
git init
git add README.md
git commit -m "first commit"
git remote add origin https://github.com/hao707822882/JavaDataCompilation.git
git push -u origin master

Push an existing repository from the command line

git remote add origin https://github.com/hao707822882/JavaDataCompilation.git
git push -u origin master
【上篇】
【下篇】

抱歉!评论已关闭.