Skip to content

Instantly share code, notes, and snippets.

View cdbullones's full-sized avatar
😎

cdbullones cdbullones

😎
View GitHub Profile
@mrcodedev
mrcodedev / gitCommandsConsole.md
Created August 25, 2018 00:02
Comandos Git para consola

COMANDOS DE GIT EN CONSOLA:

1º Configuración y primeros pasos:

git init <nombre_proyecto>: Inicia un repositorio local con el nombre.

git init : Dentro de la carpeta del proyecto, inicia un repositorio en esta carpeta.

git clone <url> : Clona el repositiorio que haya en la url.

@gokulkrishh
gokulkrishh / media-query.css
Last active November 10, 2024 02:00
CSS Media Queries for Desktop, Tablet, Mobile.
/*
##Device = Desktops
##Screen = 1281px to higher resolution desktops
*/
@media (min-width: 1281px) {
/* CSS */