Skip to content

Instantly share code, notes, and snippets.

View Neonox31's full-sized avatar

WEBER Logan Neonox31

View GitHub Profile
@Neonox31
Neonox31 / install_fish_debian.sh
Created January 14, 2018 16:02 — forked from mamiu/install_fish_debian.sh
Install fish shell in Debian 8 (commands from the original fish shell website).
#!/bin/bash
echo 'deb http://download.opensuse.org/repositories/shells:/fish:/release:/2/Debian_8.0/ /' >> /etc/apt/sources.list.d/fish.list
apt-get update
wget -qO - http://download.opensuse.org/repositories/shells:fish:release:2/Debian_8.0/Release.key | apt-key add -
apt-get update
apt-get install -y fish
@Neonox31
Neonox31 / gitflow-breakdown.md
Created February 13, 2017 13:43 — forked from JamesMGreene/gitflow-breakdown.md
A comparison of using `git flow` commands versus raw `git` commands.

Initialize

gitflow git
git flow init git init
git commit --allow-empty -m "Initial commit"
git checkout -b develop master

Connect to the remote repository