美文网首页
显示 git 分支配置

显示 git 分支配置

作者: 山的那边是什么_ | 来源:发表于2019-10-15 20:22 被阅读0次

vim ~/.bashrc

__git_ps1 ()
{
    local b="$(git symbolic-ref HEAD 2>/dev/null)";
    if [ -n "$b" ]; then
        printf " (%s)" "${b##refs/heads/}";
    fi  
}
PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\033[0;36m\]$(__git_ps1)\[\033[0m\n\$ '

source ~/.bashrc

source 失效问题解决
https://zhidao.baidu.com/question/373226436401362844.html

相关文章

  • git 常用命令

    1、git显示全部分支 git branch //显示本地分支git branch -a //显示远程分支 2、g...

  • git 分支

    git 显示所有分支(包含本地和远程)命令: git 删除本地分支命令: git 显示远程分支命令: git 删除...

  • git学习笔记

    配置信息 显示当前的Git配置 配置当前的用户信息 配置当前项目区分大小写 下载项目 分支 列出本地分支 列出远程...

  • 显示 git 分支配置

    vim ~/.bashrc source ~/.bashrc source 失效问题解决https://zhid...

  • Git命令整理

    Git命令 ———————————————— git配置: git基本步骤: git分支管理: 创建分支命令: 切...

  • git命令小说

    git config --list 查看git配置 分支branch 查看本地分支:$ git branc...

  • Git分支命令

    1. 创建分支 $ git branch 2. 显示分支列表 $ git branch 3. 切换分支 $ git...

  • git branch

    命令格式 git branch 显示当前分支名 git branch [ ] 创建分支 git branch...

  • Git 常用命令

    Git设置代理 Git分支操作 Git合并 Git 配置

  • git常用操作 🎀

    git常用操作 ? 基本知识 查看git信息 修改git配置 提交类操作 分支类操作 创建分支 查看分支 修改分支...

网友评论

      本文标题:显示 git 分支配置

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