From cfd59eb211f2000295715976e4ff91a195169294 Mon Sep 17 00:00:00 2001 From: csmcrlw Date: Sun, 26 Jan 2025 23:12:21 +0500 Subject: [PATCH 1/3] initial commit --- backup.sh | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 backup.sh diff --git a/backup.sh b/backup.sh new file mode 100644 index 00000000..a3990d2d --- /dev/null +++ b/backup.sh @@ -0,0 +1,3 @@ +echo "#!/bin/bash" > ~/git/test/backup.sh +echo "echo 'This is a backup script.'" >> ~/git/test/backup.sh +chmod +x ~/git/test/backup.sh From 5d60bcab96fd846d968fe57107ff86dc1232ccab Mon Sep 17 00:00:00 2001 From: csmcrlw Date: Sun, 26 Jan 2025 23:12:51 +0500 Subject: [PATCH 2/3] comment added --- backup.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/backup.sh b/backup.sh index a3990d2d..1b0be760 100644 --- a/backup.sh +++ b/backup.sh @@ -1,3 +1,4 @@ echo "#!/bin/bash" > ~/git/test/backup.sh echo "echo 'This is a backup script.'" >> ~/git/test/backup.sh chmod +x ~/git/test/backup.sh +echo "# This is a comment" >> backup.sh From c0a49cf1651c29e369db85af77d99f1091d74e83 Mon Sep 17 00:00:00 2001 From: csmcrlw Date: Sun, 26 Jan 2025 23:17:05 +0500 Subject: [PATCH 3/3] new lines --- backup.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/backup.sh b/backup.sh index 1b0be760..31660df9 100644 --- a/backup.sh +++ b/backup.sh @@ -2,3 +2,6 @@ echo "#!/bin/bash" > ~/git/test/backup.sh echo "echo 'This is a backup script.'" >> ~/git/test/backup.sh chmod +x ~/git/test/backup.sh echo "# This is a comment" >> backup.sh +echo "echo 'Another change'" >> backup.sh +git add backup.sh +git commit -m "Изменение 1"