“aplikasi untuk melihat cabang git di ubuntu” Kode Jawaban

bagaimana melihat semua cabang di git

git branch -a
Precious Pheasant

aplikasi untuk melihat cabang git di ubuntu

parse_git_branch() {
 git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/(\1)/'
}
if [ "$color_prompt" = yes ]; then
 PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[01;31m\] $(parse_git_branch)\[\033[00m\]\$ '
else
 PS1='${debian_chroot:+($debian_chroot)}\u@\h:\w$(parse_git_branch)\$ '
fi
# THE SIX LINES BELOW are the default prompt and the unset (which were in the original .bashrc)
#if [ "$color_prompt" = yes ]; then
#    PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ '
#else
#    PS1='${debian_chroot:+($debian_chroot)}\u@\h:\w\$ '
#fi
#unset color_prompt force_color_prompt
Expensive Eagle

Jawaban yang mirip dengan “aplikasi untuk melihat cabang git di ubuntu”

Pertanyaan yang mirip dengan “aplikasi untuk melihat cabang git di ubuntu”

Lebih banyak jawaban terkait untuk “aplikasi untuk melihat cabang git di ubuntu” di Shell/Bash

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya