Docker Windows 10 Home Edition installation Installation Failed: one prerequisite is not fulfilled Docker Desktop requires Windows 10 Pro or Enterprise version 15063 to run. The reason why Docker needs Windows Pro or Enterprise is that they are using Hyper-V and Containers. Let’s install these. SOLUTION: Install Hyper-V and Containers
Commands (alternatives) to delete all branchs (locally) except master and developer: git branch | grep -v "master\|developer" | xargs git branch -D git branch -D git branch | grep -vE 'master|developer' Command to delete remote branch: git push origin --delete