Intern
Comment faire votre premier commit et ajouter tous les fichiers au système de contrôle de version?
sobes.tech IA
Réponse de l'IA
# Инициализирует новый локальный репозиторий Git
git init
# Добавляет все измененные или новые файлы в индекс (staging area)
git add .
# Создает новый коммит с сообщением "Initial commit"
git commit -m "Initial commit"