Skip git prompt
This commit is contained in:
parent
27753a09a8
commit
d03b5e7e25
|
@ -77,6 +77,16 @@ else
|
||||||
fi
|
fi
|
||||||
|
|
||||||
git_prompt_info_no_space() {
|
git_prompt_info_no_space() {
|
||||||
|
current="$PWD"
|
||||||
|
while [ "$PWD" != "/" ] && [ ! -d "$PWD/.git" ]; do
|
||||||
|
cd ..
|
||||||
|
done
|
||||||
|
|
||||||
|
if [ -f "$PWD/.gitskipprompt" ]; then
|
||||||
|
return
|
||||||
|
fi
|
||||||
|
|
||||||
|
cd "$current"
|
||||||
local info=$(git_prompt_info)
|
local info=$(git_prompt_info)
|
||||||
if [ ! -z $info ]; then
|
if [ ! -z $info ]; then
|
||||||
echo " $info"
|
echo " $info"
|
||||||
|
|
Loading…
Reference in New Issue