Tomas Krivda - coding and web development
Coding and web development<TomasKrivda />
After making some changes on master, to switch to another branch containing all uncommited changes leaving the master branch clean:
git switch -c <new-branch>
source: stackoverflow.com
git push origin <your_branch_name> --force
This will delete your previous commit(s) and push your current one.
Insert / amend this in ~/.bashrc:
force_color_prompt=yes
color_prompt=yes
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
unset color_prompt force_color_prompt
© 2020-2023 Tomas Krivda