přejmenovány skripty, aby obsahovaly číselný prefix
This commit is contained in:
parent
284f879bd4
commit
c3e9e2b666
4
examples/01-git-init.sh
Normal file
4
examples/01-git-init.sh
Normal file
@ -0,0 +1,4 @@
|
||||
#!/bin/bash
|
||||
# Tento skript inicializuje nový Git repozitář ve stávající složce
|
||||
git init
|
||||
echo "Git repozitář byl úspěšně inicializován."
|
4
examples/02-git-add.sh
Normal file
4
examples/02-git-add.sh
Normal file
@ -0,0 +1,4 @@
|
||||
#!/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."
|
4
examples/03-git-commit.sh
Normal file
4
examples/03-git-commit.sh
Normal file
@ -0,0 +1,4 @@
|
||||
#!/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."
|
Loading…
Reference in New Issue
Block a user