You've already forked personal-linux-config
added bashrc ovverrides and relative function to deploy.sh
This commit is contained in:
23
bashrc_overrides/git_functions
Normal file
23
bashrc_overrides/git_functions
Normal file
@@ -0,0 +1,23 @@
|
||||
__git_dirty() {
|
||||
if [ "$(git status 2> /dev/null | tail -1)" != "nothing to commit, working tree clean" ]; then
|
||||
echo "*"
|
||||
fi
|
||||
}
|
||||
__git_branch() {
|
||||
branch=$(git branch 2>/dev/null | grep "*" | sed -e 's/\*\ //') || return
|
||||
if [ "$branch" == *"detached"* ]; then
|
||||
branch=$(echo "$branch" | sed -e 's/.*at\ //' | sed -e 's/)//')
|
||||
fi
|
||||
echo "$branch"
|
||||
}
|
||||
__git_prompt() {
|
||||
branch=$(__git_branch)
|
||||
if [ ! -z "$branch" ]; then
|
||||
echo "$branch$(__git_dirty)"
|
||||
else
|
||||
echo "NONE"
|
||||
fi
|
||||
}
|
||||
__git_history() {
|
||||
echo "$(git log --oneline | cut -d ' ' -f 1)"
|
||||
}
|
Reference in New Issue
Block a user