Hi I am using git version 2.1.0 in my rails application . I want to ignore shell script from a folder called services
/services/*.sh
I have used this code in .gitignore , but it doesn’t works.I have called a single file directly too like
/services/setup_env_local.sh
its also not works .But other extensions like .log , .rb are ignoring with the same code
/services/*.log
what is the mistake I have done?...