git 从本地 git 服务器推送后如何使用 jgit api 发送自定义错误消息
How can send custom error message after git push from local git server by using jgit api
我一直在使用 jgit 创建本地 git 服务器。
以下是我的本地 git 服务器的代码存储库。
https://github.com/masumcse1/mygitserver
git 克隆 http://localhost:9090/mygitserver/git/customer
此程序适用于所有类型的基本 git 命令(克隆、推送、拉取)。
现在我想在从任何用户推送错误文件(除了 .java 文件)后从这个 servlet 发送自定义错误。
用户将从他的 git 客户端收到此错误消息。
任何人请解释我如何在推送任何错误的文件类型后向 git 客户端发送此错误。
你可以用 server-side hook
我一直在使用 jgit 创建本地 git 服务器。 以下是我的本地 git 服务器的代码存储库。
https://github.com/masumcse1/mygitserver
git 克隆 http://localhost:9090/mygitserver/git/customer
此程序适用于所有类型的基本 git 命令(克隆、推送、拉取)。 现在我想在从任何用户推送错误文件(除了 .java 文件)后从这个 servlet 发送自定义错误。
用户将从他的 git 客户端收到此错误消息。 任何人请解释我如何在推送任何错误的文件类型后向 git 客户端发送此错误。
你可以用 server-side hook