I have 2 Git repository. After push in my main repository automatically pulling another (by hook). What command can help me run external application for doing additional work?
I have 2 Git repository. After push in my main repository automatically pulling another
Share
A
post-mergehook should run after agit pull.Make sure to avoid the issues mentioned in “git windows post pull” or “git hook post-merge – error: cannot run“.
You have an example of “additional work” in “Git
post-mergehook to auto-fire rails migrations“