aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.bashrc2
-rw-r--r--.zshrc2
2 files changed, 2 insertions, 2 deletions
diff --git a/.bashrc b/.bashrc
index 11d8757..54c0aa0 100644
--- a/.bashrc
+++ b/.bashrc
@@ -86,7 +86,7 @@ __precmd()
fi
# Get the branch name
- local git_branch_name=$(git rev-parse --abbrev-ref @)
+ local git_branch_name=$(git rev-parse --abbrev-ref HEAD)
if [[ "$git_branch_name" == "HEAD" ]]
then
diff --git a/.zshrc b/.zshrc
index 3ab08d5..aee4c54 100644
--- a/.zshrc
+++ b/.zshrc
@@ -104,7 +104,7 @@ function precmd() # {{{
fi
# Get the branch name
- GITBRANCH=$(git rev-parse --abbrev-ref @)
+ GITBRANCH=$(git rev-parse --abbrev-ref HEAD)
if [ "$GITBRANCH" = "HEAD" ]
then