git的使用
1.windows 下直接上Github 官网安装客户端
2.linux 下安装:yum install git
3.git status -- 查看当前工作目录区状态
4.git init --初始化仓库
5.git clone [url] 克隆项目到本地 [url]为仓库地址
6.git add [filesname] 添加文件到缓存(保存快照)
7.git commit 将快照写入缓存 git commit -m +注释 git push
8.git reset HEAD 取消add后的缓存文件
9.git rm --cached 删除缓冲区文件,git rm file 删除本地文件
10.git mv file1 file2 剪切file1到file2
11.使用github作为仓库:
1)ssh-keygen -t rsa -C "youremail@example.com" 本地与GitHub使用ssh加密传输的,要先生成SSH key
2) cd .ssh
3)vim id_rsa.pub 复制key到Github上
4)先在github上新建一个项目,然后本地创建一个测试文件夹,创建一个文件,最后初始化该文件夹为git仓库 git init
5) 设置全局登录git config --global user.email "you@example.com"
git config --global user.name "Your Name"
6)git remote add origin git@github.com:BigHeroXu/test 添加远程仓库
7)git remote -v 查看远程仓库
8)git remote rm origin --删除远程仓库(其中origin 是master分支的别名)
9)git fetch origin 从远程仓库下载新分支与数据,接着git merge 合并到当前分支
12.搭建自己的仓库:
13.git tag -a [tagname] --为项目指定版本,打上标签
14.git log 查看提交历史 git log --online --简介版查看历史