Clone git-aware-prompt into its own directory in .bash so other scripts can be stored in there too. Keeps the home directory tidy. ;)

This commit is contained in:
Mike Stenhouse
2012-08-16 14:48:43 +01:00
parent 8c3ad5a8bb
commit 125702a857
2 changed files with 8 additions and 7 deletions

View File

@@ -17,14 +17,15 @@ If you `cd` to a Git working directory, you will see the current Git branch name
## Installation ## Installation
Clone the project to a `.bash` folder in your home directory: Clone the project to a `.bash` folder in your home directory:
git clone git://github.com/jimeh/git-aware-prompt.git ~/.bash mkdir ~/.bash
cd ~/.bash
git clone git://github.com/mikesten/git-aware-prompt.git
Edit your `~/.profile` or `~/.bash_profile` and add the following to the top: Edit your `~/.profile` or `~/.bash_profile` and add the following to the top:
export DOTBASH=~/.bash export GITAWAREPROMPT=~/.bash/git-aware-prompt
source $DOTBASH/main.sh source $GITAWAREPROMPT/main.sh
export PS1="\u@\h \w\[$txtcyn\]\$git_branch\[$txtrst\]\$ "
Optionally, if you want a nice pretty prompt when using `sudo -s`, also add this line: Optionally, if you want a nice pretty prompt when using `sudo -s`, also add this line:

View File

@@ -1,2 +1,2 @@
source $DOTBASH/colors.sh source $GITAWAREPROMPT/colors.sh
source $DOTBASH/prompt.sh source $GITAWAREPROMPT/prompt.sh