git bash stop all tasks on port code example
Example 1: port already in use windows 10
netstat -ano | findstr :3001
taskkill /PID <yourid> /F
Example 2: close all localhost connections
netstat -ano | findstr :yourPortNumber
taskkill /PID typeyourPIDhere /F