0

I have a requirement that once I push a csv file to remote branch, it should call an npm script to process the data from CSV file.

Please advice which would be the best way to do this.

Narasimhan
  • 73
  • 1
  • 7

1 Answers1

0

Git does not have a post-push hook. There is a pre-receive hook that you can set up in the git server if you are using your own git server. You can read up on it here Git hooks

Abishek Aditya
  • 802
  • 4
  • 11