Skip to content

Instantly share code, notes, and snippets.

View fherx's full-sized avatar

Fernando fherx

  • Bolivia
View GitHub Profile

📋 Git Cheat Sheet para MPlayer

Este documento agrupa los comandos y flujos Git más comunes, organizados por escenarios para que puedas consultarlos rápidamente. Está pensado para quienes están empezando con Git y GitHub.


🔄 Pull Requests (PR)

¿Qué es? Una Pull Request (PR) es una propuesta de cambios que envías desde una rama (por ejemplo, feature/... o hotfix/...) hacia otra (habitualmente develop). Permite:

## Guía de Git y GitHub con GitFlow para el proyecto **mplayer**
### 0. Configuración inicial para un nuevo miembro (macOS)
1. **Instalar Homebrew** (gestor de paquetes en macOS):
```bash
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
```
2. **Instalar Node.js y npm**:
```bash
@fherx
fherx / FirebaseUIHelp.txt
Created February 18, 2017 17:27 — forked from caldwbr/FirebaseUIHelp.txt
Help for Installing FirebaseUI Drop-In Authentication System with Swift 3
*******AppDelegate.swift *******
//
// AppDelegate.swift
// Bizzy Books
//
// Created by Brad Caldwell on 9/23/16.
// Copyright © 2016 Caldwell Contracting LLC. All rights reserved.
//
@fherx
fherx / Single Value from mysqli PHP.php
Created September 24, 2016 14:00 — forked from bcamarneiro/Single Value from mysqli PHP.php
Return single value from mysqli PHP
$name = $mysqli->query("SELECT name FROM contacts WHERE id = 5")->fetch_object()->name;