git分支仓库管理

git分支和标签管理

  1. 创建分支 git branch banchName git checkout -b branchName git push --set-upstream origin branchName (推动远程)
  2. 合并分支 git merge --no-ff -m "合并描述" origin/master git log --graph 命令可以看到分支合并图
  3. 查看分支 git branch git branch -a
  4. 创建标签 tag git tag tagNamec git tag -a tagName -m "描述" git push origin tagName 远程
  5. 删除标签 tag git tag -d tagName git push origin tagName 远程

本地仓库和远程仓库建立连接

  1. git init
  2. git remote add origin [email protected]
  3. git push -u origin master
  4. git push origin master
  5. 切换远程仓库git remote set-url origin ssh://ssss.git
  6. 克隆远程分支 git clone 远程路径

本地git安装配置

安装好git 配置git

  1. git config --global user.name "grow"
  2. git config --global user.email "[email protected]"
  3. git commit --amend --reset-author
    生成shh
  4. ssh-keygen -t rsa -C "user.email"
  5. ssh-keygen -t rsa -C "[email protected]"
    window 新增多个gitlab 私钥密钥,新建一个config 文件里面配置
  6. Host 120.24.157.99 HostName 120.24.157.99 User fanjianhao IdentityFile C:\Users\fanji.ssh\id_rsa
  7. Host 192.168.31.22 HostName 192.168.31.22 User fjh IdentityFile C:\Users\fanji.ssh\fjhigrowiser

你可能感兴趣的:(git分支仓库管理)