From 6199802e265bee5bbfdb42c3ddb677126b7d7630 Mon Sep 17 00:00:00 2001 From: Arsen Musayelyan Date: Sat, 22 May 2021 17:09:13 -0700 Subject: [PATCH] Add GPL3 header and github --- .gitm.toml | 1 + gitm.rb | 19 ++++++++++++++++++- 2 files changed, 19 insertions(+), 1 deletion(-) diff --git a/.gitm.toml b/.gitm.toml index 6f47c75..b4c1bf6 100644 --- a/.gitm.toml +++ b/.gitm.toml @@ -1,3 +1,4 @@ [repos] origin = "ssh://git@192.168.100.62:2222/Arsen6331/gitm.git" gitlab = "git@gitlab.com:moussaelianarsen/gitm.git" +github = "git@github.com:Arsen6331/gitm.git" diff --git a/gitm.rb b/gitm.rb index a90350d..76d3ffe 100644 --- a/gitm.rb +++ b/gitm.rb @@ -1,5 +1,22 @@ #!/usr/bin/ruby +# Gitm. Automatic git mirroring script. +# +# Copyright (C) 2021 Arsen Musayelyan +# +# This program is free software: you can redistribute it and/or modify it under +# the terms of the GNU General Public License as published by the Free Software +# Foundation, either version 3 of the License, or (at your option) any later +# version. +# +# This program is distributed in the hope that it will be useful, but WITHOUT +# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS +# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. + +# You should have received a copy of the GNU General Public License along with +# this program. If not, see . + + require 'toml' require 'colorize' @@ -38,4 +55,4 @@ when "init" system "git checkout master" else system "git", *args -end \ No newline at end of file +end