2009-11-14 00:34:54 +02:00
2009-11-14 00:21:28 +02:00
2009-11-15 23:30:51 +02:00
2009-11-15 23:30:51 +02:00

Git Aware Prompt

Working with Git and it's great branching/merging features is amazing. Constantly switching branches can be confusing though as you have to run git status to see which branch you're currently on.

The solution to this is to have your terminal prompt display the current branch. There's a number of articles available online about how to achieve this.

I based this project mainly on Aaron Crane's solution.

Overview

If you cd to a Git working directory, you will see the current Git branch name displayed in your terminal prompt. When you're not in a Git working directory, your prompt works like normal.

Git Branch in Prompt

Installation

Clone the project to a .bash folder in your home directory:

git clone git://github.com/jimeh/git-aware-prompt.git ~/.bash

Edit your ~/.profile or ~/.bash_profile and add the following to the top:

export DOTBASH=~/.bash
source $DOTBASH/main.sh
PS1="\u@\h \w\[$txtcyn\]\$git_branch\[$txtrst\]\\$ "

Configuring

If you followed the above installation instructions, you've added the default prompt style already by defining the PS1 variable. If you don't know how to customize your prompt, I recommend you check this how-to.

Basically, to have the current Git branch shown, simply add $git_branch to your PS1 variable, and make sure the variable value is defined with double quotes. A set of color variables have also been set for you to use. For a list of available colors check colors.sh.

License

Copyright (c) 2009 Jim Myhrberg

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so.

THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Description
Display current Git branch name in your terminal prompt when in a Git working directory.
Readme CC0-1.0 760 KiB
Languages
Shell 100%