Tooos los archivos aqui escritos aparte del mismo README y el "git_manual.md", son usados como ejemplo
Esta informacion y más en el archivo git_manual.md
git has three main trees:
- Working directory
- Staging area
- Repository
Notes:
- Default Branch -> Master
- HEAD is how we name the commit we are in
git init
# One by one
git add <file>
# All
git add .
git add -A
# Files or Directorys #
git restore --staged <name>
# Files only
git rm --cached <file name>
# Directories
git rm --cached -r <directory name>
# This file should not be in staging area
git restore <file name>
# Only commit
git commit
# With message
git commit -m "Message"
# Add all files and do commit with message
git commit -am "Message"