github的一般使用介绍

来源:互联网 发布:js侧边栏伸缩 编辑:程序博客网 时间:2024/06/08 11:33


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


Create a new repository on the command line

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

Push an existing repository from the command line

git remote add origin https://github.com/hao707822882/JavaDataCompilation.gitgit push -u origin master
0 0