Sobes.tech
Intern

Hoe maak je je eerste commit en voeg je alle bestanden toe aan het versiebeheersysteem?

sobes.tech AI

Antwoord van AI

# Инициализирует новый локальный репозиторий Git
git init
# Добавляет все измененные или новые файлы в индекс (staging area)
git add .
# Создает новый коммит с сообщением "Initial commit"
git commit -m "Initial commit"