CentOS 6.5 配置 Git 工作空间


  • git-completion.bash 保存在你的 root 目录中。

  • git-prompt.sh 保存在你的 root 中。

  • 修改 .bash_profile 文件,添加如下内容。

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    # Enable tab completion
    source ~/git-completion.bash

    # colors!
    green="\[\033[0;32m\]"
    blue="\[\033[0;34m\]"
    purple="\[\033[0;35m\]"
    reset="\[\033[0m\]"

    # Change command prompt
    source ~/git-prompt.sh

    export GIT_PS1_SHOWDIRTYSTATE=1
    # '\u' adds the name of the current user to the prompt
    # '\$(__git_ps1)' adds git-related stuff
    # '\W' adds the name of the current directory
    export PS1="$purple\u$green\$(__git_ps1)$blue \W $ $reset"
  • Done !