Git Pull / Fetch Automation

时间:2014-06-17 20:11:35

标签: linux git github automation

我想自动化本地服务器来提取github存储库,然后将代码文件的版权添加到代码文件中,如果它们不存在,则提交并推送它们。我有linux centOS服务器上运行的版权可执行文件,但我无法告诉我的程序运行与否。 Webhooks不起作用,因为它是一个本地服务器,而不是面向网络的任何想法?

1 个答案:

答案 0 :(得分:0)

我的第一个想法是你可以写一个脚本来做这件事。最简单的方法是使用shell脚本或python脚本。

脚本可以执行以下操作。

Open every directory
   for each directory
       for each file in the directory
            if not contains copyright
                add copyright to top of file

git commit -m "add copyright"
git push