Tomas Krivda - coding and web development

Git / GitHub

Create a branch from unstaged/uncommitted changes on master

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

Force-push local changes to the remote repository

git push origin <your_branch_name> --force

This will delete your previous commit(s) and push your current one.

Show current git branch in Bash prompt

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