标签:oba 仓库 com glob git bash conf creat 登录 global
1.sign up注册
2.填写用户账号,email地址和密码点击create account
3.创建公开仓库点击continue
4.点击submit跳转
1.git官网下载,安装git
2.gitHub上创建账号
3.登录gitHub
4.创建一个项目
5.github网站 + new repository
6.在自己的文件下
(1)git bash here(打开cmd)
(2)git init
(3) git add .
(4) git commit -m ‘提交的描述‘
第一次 git config --global user.email ‘邮箱名‘ git config --global user.name ‘用户名‘
(5) tell me who you are 使用 git config --global user email user.name
(6) git commit -m ‘提交的描述‘
(7) git remote add origin ......
(8) git push -u origin master
下载
(1) git clone 复制一个链接下载
后期上传代码
(1) git add .
(2) git commit -m ‘提交的描述‘
(3)git pull
(4)git push
标签:oba 仓库 com glob git bash conf creat 登录 global
原文地址:https://www.cnblogs.com/yg123-lb/p/11903488.html