문제

When I try and go to the .ssh directory with cd ~/.ssh it correctly navigates to that directory but I get a __git ps1: command not found. Not sure why this is happening and how to resolve the issue.

here is my bashrc file

#Git tab completion
source ~/git-completion.bash
# Show branch in status line
PS1='[\W$(__git_ps1 " (%s)")]\$ '
export PROMPT_COMMAND='echo -ne "\033]0;${PWD/#$HOME/~}\007"'
도움이 되었습니까?

해결책

The problem is that your prompt contains the __git_ps1 function call, but it isn't defined. Newer versions of the git-completion file define this function but it's not in your copy. EG, on Fedora, its defined in /etc/bash_completion.d/git

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top