Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

cannot delete branch checked out at

Switch to some other branch and delete Test_Branch, as follows:

$ git checkout master
$ git branch -d Test_Branch
If above command gives you error - The branch 'Test_Branch' is not fully merged. If you are sure you want to delete it and still you want to delete it, then you can force delete it using -D instead of -d, as:

$ git branch -D Test_Branch
To delete Test_Branch from remote as well, execute:

git push origin --delete Test_Branch
Comment

PREVIOUS NEXT
Code Example
Shell :: fish unset 
Shell :: awk trim every nth line 
Shell :: nginx stop if proxy_pass is down 
Shell :: remove all games ubuntu 
Shell :: remove folder from terminal 
Shell :: update and upgrade ubuntu 
Shell :: is not in the sudoers file 
Shell :: bz2 unzip 
Shell :: rm recursive file pattern 
Shell :: debian bullseye sources.list security 
Shell :: redis-cli port host 
Shell :: launch powershell code runner 
Shell :: split big file into smaller parts 
Shell :: how to know which shell is specified for linux 
Shell :: reinstall chrome ubuntu 
Shell :: connect to specific wifi decive fedora 
Shell :: pm2 typescript 
Shell :: see default gateway linux 
Shell :: apt install crunch kali linux 
Shell :: show seconds ubuntu 
Shell :: how to rename files with mv in linux 
Shell :: Failed to start firewalld - dynamic firewall daemon. 
Shell :: bash substring test 
Shell :: github how to clone private repo 
Shell :: linux screen run jar 
Shell :: install openvpn access server on ubuntu 
Shell :: windows find node path 
Shell :: shell open program 
Shell :: jq to csv 
Shell :: remove space at end of each line file 
ADD CONTENT
Topic
Content
Source link
Name
9+5 =