美文网首页
git使用流程

git使用流程

作者: 诺喵 | 来源:发表于2022-10-31 20:41 被阅读0次

    点击鼠标右键选择 Git Bash Here

    git.png

    开始流程.

    1.初始化 git 仓库.
    git init

    2.创建信息 .

    git config user.name "姓名"
    git config user.email "邮箱"
    
    1. 查看设置情况.
      git config -l

    4.克隆仓库
    git clone 仓库地址

    1. 切换到自己分支.
      git checkout 分支名

    2. 编写代码.

    3. 将工作目录文件存放到缓存区.
      git add .

    4. 添加修改备注.
      git commit -m '自定义提交信息'

    5. 拉取开发分支(develop),因为别人可能已经提交了新的.
      git pull origin 开发分支

    6. 切换到开发分支.
      git checkout 开发分支

    7. 合并分支,并解决存在的问题.
      git merge 分支名

    8. 推送到远程仓库.
      git push

    相关文章

      网友评论

          本文标题:git使用流程

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