Intern
How to make your first commit and add all files to the version control system?
sobes.tech AI
Answer from AI
# Initializes a new local Git repository
git init
# Adds all changed or new files to the index (staging area)
git add .
# Creates a new commit with the message "Initial commit"
git commit -m "Initial commit"