Is it possible to exclude certain commits from being pushed to a service hook on Github? For example, if I only edit the Readme file of a project, it makes no sense to re-test the entire application on Travis. Is there a way I can tell Git that that particular commit should not be sent to the Travis hook?
Share
To answer the Travis-related part: As explained in the Travis docs you can skip a build if you append
[ci skip]to any of the commits you’re going to push.