美文网首页
git分支仓库管理

git分支仓库管理

作者: 麦田夕阳 | 来源:发表于2019-10-15 11:18 被阅读0次

    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 git@github.comit.git
    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 "fahao@ir.com"
    3. git commit --amend --reset-author
      生成shh
    4. ssh-keygen -t rsa -C "user.email"
    5. ssh-keygen -t rsa -C "fanjianhao@igrowiser.com"
      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分支仓库管理

          本文链接:https://www.haomeiwen.com/subject/mcojmctx.html