copy and paste this google map to your website or blog!
Press copy button and paste into your blog or website.
(Please switch to 'HTML' mode when posting into your blog. Examples: WordPress Example, Blogger Example)
How do I delete a Git branch locally and remotely? Don't forget to do a git fetch --all --prune on other machines after deleting the remote branch on the server ||| After deleting the local branch with git branch -d and deleting the remote branch with git push origin --delete other machines may still have "obsolete tracking branches" (to see them do git branch -a) To get rid of these do git fetch --all --prune
How do I find out which process is listening on a TCP or UDP port on . . . PowerShell TCP Get-Process -Id (Get-NetTCPConnection -LocalPort YourPortNumberHere) OwningProcess This shows several columns of information about the process The Id column is the PID you need if you want to kill it with taskkill PID <pid> UDP Get-Process -Id (Get-NetUDPEndpoint -LocalPort YourPortNumberHere) OwningProcess cmd netstat -a -b (Add -n to stop it trying to resolve hostnames