git-learning/examples/git-add.sh

5 lines
155 B
Bash
Raw Normal View History

#!/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."