Skip to content

Instantly share code, notes, and snippets.

View javilonas's full-sized avatar
💭
I may be slow to respond.

Javier Sayago javilonas

💭
I may be slow to respond.
View GitHub Profile
@javilonas
javilonas / cygwin-config.sh
Created December 28, 2017 22:24 — forked from mhoyer/cygwin-config.sh
Cygwin base installation
# 1. Download cygwin setup-x86.exe from http://www.cygwin.com/setup-x86.exe.
# 2. Install with wget package.
# 3. Run cygwin.bat with Administrator rights
cd /tmp
# wget http://apt-cyg.googlecode.com/svn/trunk/apt-cyg
wget https://github.com/Milly/apt-cyg/raw/master/apt-cyg --no-check-certificate
chmod +x apt-cyg
mv apt-cyg /bin/apt-cyg
apt-cyg update
@javilonas
javilonas / Operaciones-Git
Created December 3, 2015 23:30 — forked from jelcaf/Operaciones-Git
Git Tips - Mini-trucos de Git para facilitarme la tarea
#############################################
# Push de la rama actual
git push origin $rama_actual
#############################################
# Volver a un commit anterior, descartando los cambios
git reset --HARD $SHA1
#############################################
# Ver y descargar Ramas remotas
@javilonas
javilonas / gitconfig-git
Created November 28, 2015 17:13 — forked from stevenh512/gitconfig-git
URL rewriting in .gitconfig
# Use git and git+ssh instead of https
[url "git://github.com/"]
insteadOf = https://github.com/
[url "[email protected]:"]
pushInsteadOf = "git://github.com/"
[url "[email protected]:"]
pushInsteadOf = "https://github.com/"
<?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="red_50">#fde0dc</color>
<color name="red_100">#f9bdbb</color>
<color name="red_200">#f69988</color>
<color name="red_300">#f36c60</color>
<color name="red_400">#e84e40</color>
<color name="red_500">#e51c23</color>
<color name="red_600">#dd191d</color>
<color name="red_700">#d01716</color>