git分支和标签管理
- 创建分支 git branch banchName git checkout -b branchName git push --set-upstream origin branchName (推动远程)
- 合并分支 git merge --no-ff -m "合并描述" origin/master git log --graph 命令可以看到分支合并图
- 查看分支 git branch git branch -a
- 创建标签 tag git tag tagNamec git tag -a tagName -m "描述" git push origin tagName 远程
- 删除标签 tag git tag -d tagName git push origin tagName 远程
本地仓库和远程仓库建立连接
- git init
- git remote add origin git@github.comit.git
- git push -u origin master
- git push origin master
- 切换远程仓库git remote set-url origin ssh://ssss.git
- 克隆远程分支 git clone 远程路径
本地git安装配置
安装好git 配置git
- git config --global user.name "grow"
- git config --global user.email "fahao@ir.com"
- git commit --amend --reset-author
生成shh - ssh-keygen -t rsa -C "user.email"
- ssh-keygen -t rsa -C "fanjianhao@igrowiser.com"
window 新增多个gitlab 私钥密钥,新建一个config 文件里面配置 - Host 120.24.157.99 HostName 120.24.157.99 User fanjianhao IdentityFile C:\Users\fanji.ssh\id_rsa
- Host 192.168.31.22 HostName 192.168.31.22 User fjh IdentityFile C:\Users\fanji.ssh\fjhigrowiser
网友评论