git-learning/examples/03-git-commit.sh

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."