Before git for windows was upgraded to version 2.x.x I was running scripts by simply creating a file with name pull and inside it I was putting something like git pull origin master. It was running normally, after I made format and install latest version of git it don't support that scripts any more.
The error I have is: bash: pull: command not found. I have tried to add .bat and .sh to those files, and that didn't work out.
update:
Now i have in the file pull content:
#!/bin/bash
git pull origin master
To run that script i need to execute on terminal ./pull. Can i somehow use that script without ./?
