Please enable JavaScript.
Coggle requires JavaScript to display documents.
Plan de estudio 2023, Developer, DevOps, Infraestructura, DB (SQL, No SQL,…
-
Developer
-
-
-
Frontend
-
Design🧩🧩
-
-
CSS
-
Scalable and Modular Architecture for CSS
A flexible guide to developing sites small and large. http://smacss.com/
-
-
-
-
-
-
-
DevOps
Git
Git Tutorial
Basic
git add .: esto incluye archivos en el stage, el stage es el area de las cosas que se van a ir en el proximo commit
-
-
-
git commit -a: which will automatically notice any modified (but not new) files, add them to the index, and commit, all in one step.
git-tag - Create, list, delete or verify a tag object signed with GPG. git tag tagname commit name
-
Managing branches
-
-
-
-
git diff: muestra los conflictos. This form is to view the changes you made relative to the index (staging area for the next commit). In other words, the differences are what you could tell Git to further add to the index but you still haven’t.
-
-
git branch -d o -D name: Delete. -d requiere que los se haya hecho un merge en la rama actual, -D lo borra de manera forzada
-
-
-
-
-
SEPARATE CHANGES:As a general rule, you should try to split your changes into small logical steps, and commit each of them.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-