梳理一下git工具的用法以及作用。
1.登上github,点击new repository创建仓库
2.填写仓库名,点击创建即可
纯git使用
//设置你提交时候显示的名字
$ git config --global user.name “Your Name”
//设置你提交的邮箱
$ git config --global user.email “email@example.com”
//记录该文件夹的变更(如果是空文件夹会提示Initialized empty Git repository in /home/yep/code/gittest/.git/,告诉你文件夹为空)
$ git init
//添加到暂存区
$ git add .
//添加描述
$ git commit -m “添加了hello.txt”
//将本地项目push到仓库,在此之后会要求用户输入github的账号和密码
$ git push -u orgin master
//克隆到本地 http://为仓库克隆地址
$ git clone http://****
GitHub配合Git使用
1.首先注册GitHub官网
2.创建SSH key
windows下打开Git Bash 输入命令: ssh-keygen -t rsa -C “****@.com”
3.登陆GitHub,打开“Account settings”,“SSH Keys and GPG keys”页面,然后,点“New SSH Key”,填上任意Title,在Key文本框里粘贴id_rsa.pub文件的内容即可。
4.点击右侧菜单
5.点击add输入你的仓库地址和选择本地文件夹即可
6.提交的描述和提交到缓存区
7.下拉项目和上传共用按钮