Git bash command alternative for CMD

I am running multiple daemons manually using git bash command such as “IPFS_PATH=~/.ipfs1 ipfs daemon”. Is there any alternative command to denote the ipfs directory using windows cmd?

Yes, you need to set the IPFS_PATH environment variable. You can do this on any operating system.

I believe you need to call set IPFS_PATH=... on windows, or use $env:IPFS_PATH = ... on PowerShell.