Skip to content

Instantly share code, notes, and snippets.

View huesitos's full-sized avatar

Denisse Margarita Lara Martin huesitos

View GitHub Profile
{
"color_scheme": "Packages/Color Scheme - Default/Twilight.tmTheme",
"font_size": 15,
"word_wrap": true,
"caret_style": "phase",
"highlight_line": true,
"fade_fold_buttons": false,
"bold_folder_labels": true,
"trim_trailing_white_space_on_save": true
}

Git Cheat Sheet

Add & Commit

git init
Inicializa un repositorio.

git status
Muestra cuál es el estado actual del proyecto (qué archivos han sido modificados, cuáles están en el directorio de trabajo y cuáles en el stage area).

git add [file] ó git add --all
Agrega archivos al stage area.