美文网首页
Git 配置

Git 配置

作者: 请叫我Pro大叔 | 来源:发表于2020-05-23 09:35 被阅读0次
[user]
    
[color]
    branch = auto
    diff = auto
    interactive = auto
    pager = true
    status = auto
    ui = true
[color "status"]
    added = green
    changed = yellow
    untracked = red
[push]
    default = current
[core]
    autocrlf = input
    pager = less -FRSX
[alias]
    br = branch
    ps = push
    pl = pull
    ci = commit
    co = checkout
    st = status -sb
    lg = log --graph --pretty=format:'%C(yellow)%h%C(auto)%d%Creset %s %C(white)- %an, %ar%Creset'

相关文章

  • git配置用户和邮箱

    查看git用户配置 查看git邮箱配置 配置git用户 配置git邮箱

  • Git

    Git安装配置 Git安装 Git初始配置 跟踪文件 git config

  • centos 7上安装配置git

    安装git yum install git 配置git 配置git 用户名 git config --global...

  • git 使用记录

    【git配置】gitconifg --list #查看git配置...

  • Git基本使用命令

    Git配置 Git最小配置 配置全局账户,该账户对所有Git仓库都有效 配置局部账户,该账户对当前Git仓库有效 ...

  • 常用的几十个Git小技巧分类与总结

    Configuration:配置 列举所有的别名与配置 git config--list Git 别名配置 git...

  • 本地git配置

    pycharm配置本地git 打开pycharm设置——settings 配置本地git 搜索并找到git配置页 ...

  • git基础操作

    本文主要涉及:1: git 配置2: git基础常见命令3: 容器git配置 1. git服务器配置 2. git...

  • git 配置

    显示当前的Git配置 $ git config --list 编辑Git配置文件 $ git config -e ...

  • 2018-04-18

    git学习小结 关于git init,git add,git commit 用法总结 1.首先配置git 全局配置...

网友评论

      本文标题:Git 配置

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