I use both Linux and Windows side by side, but favor my linux machine. so when I jump on Windows, I migrate to the command lone quickly. Gitbash uses bin/sh as their shell and it acts and feels like running bash on the linux.
Git folders are set similar to linux systems.  Git is located C:\Program Files. mingw64 is also inside the Git folder and relatively close. - i'm giving you some additional steps if you haven't a;ready, but it'll make it easier for next time.
1 Create an alias in .bash_aliases/.bashrc
(for some it maybe .zsh)
$ sudo chmod +x /path/to/script.sh
//if you don't have one already, create an aliases file for your shell. If you're not in you ~ directory, then use the 2nd example)
$ touch .bash_aliases (~/.bash_aliases)
then open it with your text editor - usually nano or vim, there are others.
alias myscript='/path/to/script.sh'
press Ctrl` + X then y and enter to close
in ~/.bashrc
# we can call our script from anywhere
   export PATH="$HOME/bin:$PATH"
# tell bashrc to read the aliases
if [ -f ~/.bash_alias ]; then
    . ~/.bash_alias
fi
then Ctrl + O then Enter, the Ctrl + X to exit;
$ source ~/.bashrc
if your script isn't in your bin then symlink it
$ sudo ln -s ~/path/of/script.sh ~/bin