diff --git a/examples/git-add.sh b/examples/git-add.sh deleted file mode 100644 index 249138a..0000000 --- a/examples/git-add.sh +++ /dev/null @@ -1,4 +0,0 @@ -#!/bin/bash -# Tento skript přidá všechny soubory v aktuální složce do staging area -git add . -echo "Všechny soubory byly přidány do staging area." diff --git a/examples/git-commit.sh b/examples/git-commit.sh deleted file mode 100644 index 221c724..0000000 --- a/examples/git-commit.sh +++ /dev/null @@ -1,4 +0,0 @@ -#!/bin/bash -# Tento skript commituje všechny změny v staging area s předdefinovanou zprávou -git commit -m "Initial commit" -echo "Změny byly commitnuty." diff --git a/examples/git-init.sh b/examples/git-init.sh deleted file mode 100644 index cec542a..0000000 --- a/examples/git-init.sh +++ /dev/null @@ -1,4 +0,0 @@ -#!/bin/bash -# Tento skript inicializuje nový Git repozitář ve stávající složce -git init -echo "Git repozitář byl úspěšně inicializován."