美文网首页
Mac使用Git版本控制

Mac使用Git版本控制

作者: 下雨之後 | 来源:发表于2021-03-15 19:58 被阅读0次

    git环境搭建

    # 设置用户姓名
    git config --global user.name "姓名"
    # 设置可以联系的邮箱地址
    git config --global user.email "联系邮箱"
    # 查看设置信息
    git config --global --list
    

    本地仓库配置

    • 编写.gitignore文件
    // 排除一些不需要提交的文件
    target/
    .idea/
    xxx.iml
    
    • 创建和提交仓库
    cd 项目路径
    git init
    git add .
    git commit -m 'init'
    

    远程仓库gitee

    • 创建远程仓库
      1.登录gitee.com
      2.创建远程仓库,填写项目名称、路径,创建仓库
      3.将项目提交到远程仓库
    cd 项目路径
    git remote add origin https://gitee.com/menx/xxx.git
    git push -u origin master // 这一步要输入gitee的账户密码
    
    • 拉取远程仓库代码
    cd 项目路径
    git clone https://gitee.com/menx/xxx.git
    
    • 提交修改代码
    git status // 查看修改
    git add .
    git commit -m 'update'
    git push
    
    • 更新远程仓库代码
    git pull
    

    在idea中使用git

    idea默认已安装git插件
    Preferences | Plugins,在这里搜索git查看是否安装
    使用方式:1.Git菜单;2.右击项目git
    提交代码到远程仓库:Git | commit...
    更新远程代码到本地:Git | pull...

    参考
    https://blog.csdn.net/qq_39052513/article/details/104637326

    相关文章

      网友评论

          本文标题:Mac使用Git版本控制

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