5 lines
158 B
Bash
5 lines
158 B
Bash
|
#!/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."
|