Thursday, May 9, 2024

Change priority of dual boot OS

Change priority of dual boot OS  (Windows and Linux):

Go to your Linux OS, install Grub customizer.


Then change priority by up and down arrow key and press save.

Friday, May 3, 2024

Show your current git branch name in Ubuntu or Zorin terminal

Put the below lines to .bashrc script:
Note: bashrc file will be found here: ~/.bashrc

# Show git branch name
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

Then hit save and enjoy!

Workflow of WordPress project in a team with Git

1. We should not push any Wordpress core folders or files to github. 2. Only push custom theme and custom plugin into github. 3. So, in this...