Git基本使用
Git命令
设置与配置
git config
帮助命令
git help
初始化
git init git config --global user.name "guohongze"
git config --global user.email guohongze@126.com
获取
git clone http://xxx.git
四个区域
常用命令
git add 加入暂存(索引区)
git status 查看状态
git status -s 状态概览
git diff 尚未暂存的文件
git diff --staged 暂存区文件
git commit 提交更新
git reset 回滚
git rm 从版本库中移除
git rm --cached README 从暂存区中移除
git mv 相当于mv git rm git add三个命令
分支命令
git branch new_barnch 创建新分支
git branch 列出分支和当前分支
git branch –v 加详细
git branch --merged 查看那些分支已经被marged过来了
git branch --no-merged 查看那些分支没有被marged过来
git branch -d testing 删除分支
git checkout 切换分支
git merge 请求合并到主干分支
git log
git stash
git tag 打标签的