git常用命令
分支
查看项目的分支们(包括本地和远程)
git branch -a
切换分支
# 没有本地分支(不要写remote)
git checkout -b v1.0.1 origin/v1.0.1
# 有本地分支
git checkout v1.0.1
删除本地分支
git branch -D <BranchName>
删除远程分支
git push origin --delete <BranchName>
新建分支
git checkout -b v1.0.1
git add --all
git commit -m 'v1.0.1'
git push --set-upstream origin v1.0.1
修改分支名
修改本地分支
git branch -m old_branch new_branch
修改远程分支
git branch -m old_branch new_branch
git push origin --delete old_branch
git push --set-upstream origin new_branch
git用户信息
查看用户名和邮箱地址
git config user.name
git config user.email
修改用户名和邮箱地址
git config --global user.name "xxxx"
git config --global user.email "xxxx"
版本提交
回退版本并强行提交
git reset --hard 83ff2785
git push --force
合并代码
# 开发分支(dev)上的代码达到上线的标准后,要合并到 master 分支
git checkout dev
git pull
git checkout master
git merge dev
git push -u origin master
更新remote索引(查看远程分支,找不到目标分支可以使用fetch)
git fetch
git修改远程仓库地址
git remote set-uri origin ssh://...... .git
git 强行pull并覆盖本地文件
git fetch --all
git reset --hard origin/master
git pull
标签 tag
打印所有标签
git tag
打印符合检索条件的标签
git tag -l 1.*.*
查看对应标签状态
git checkout 1.0.0
创建轻量标签
git tag 1.0.0-light
创建带备注标签(推荐)
git tag -a 1.0.0 -m "这是备注信息"
针对特定commit版本SHA创建标签
git tag -a 1.0.0 0c3b62d -m "这是备注信息"
删除标签(本地)
git tag -d 1.0.0
将本地标签发布到远程仓库 发送所有
git push origin --tags
将本地标签发布到远程仓库 指定版本发送
git push origin 1.0.0
删除远程仓库对应标签
# Git版本 > V1.7.0
git push origin --delete 1.0.0
# 旧版本Git
git push origin :refs/tags/1.0.0
SSH
git config --global user.name 'brucejiao@qq.com'
git config --global user.email 'brucejiao@qq.com'
进入密钥存放文件夹
cd ~/.ssh
创建密钥
ssh-keygen -t rsa -C "brucejiao@qq.com"
测试git是否连接成功github
ssh -T git@github.com
Git报错->fatal:无法读取远程仓库
网络连接重新连接
sudo service network-manager restart
创建、更新 .gitingore
git rm -r --cached .
git add --all
git commit -m "update .gitignore"
git push
参考