标签:http 创建 状态 head git安装 参数 ssh git merge pre
git config --global user.name "xxx"
git config --global user.email "xxx@xxx.com"
git config --list
//查看参数配置信息git init
git add
git commit
git commit -m "desc"
git status
ls -a
可以查看隐藏的文件目录
从暂存区回退到工作区
git reset HEAD xxx.txt
git checkout -- xx.txt
git log
找到提交版本号
git reset --hard 版本号
回退
创建SSH key
ssh-keygen -t rsa -C "youremail@example.com"
个人用户目录下 .ssh目录下 id_rsa.pub内容复制到github 的key中
添加远程仓库
git remote add origin git@github.com:xxx/xxx/git
git push origin master
git push -u origin master
git push origin master
git tag
查看所有标签
git tag tagname
创建标签
git tag -a tagname -m "common"
指定提交信息
git tag -d tagname
删除标签
git push origin tagname
推送标签/标签发布
git branch
查看分支
git branch branch_name
创建分支
git checkout branch_name
切换分支
合并分支
git checkout master
git merge branch_name
标签:http 创建 状态 head git安装 参数 ssh git merge pre
原文地址:https://www.cnblogs.com/bigorang/p/9734605.html