Skip to content

Instantly share code, notes, and snippets.

View gabbio's full-sized avatar
🏠
Working from home

Abou Bakr G. gabbio

🏠
Working from home
  • Abidjan, Côte D'ivoire
View GitHub Profile
@gabbio
gabbio / rails http status codes
Created July 5, 2019 09:57 — forked from mlanett/rails http status codes
HTTP status code symbols for Rails
HTTP status code symbols for Rails
Thanks to Cody Fauser for this list of HTTP responce codes and their Ruby on Rails symbol mappings.
Status Code Symbol
1xx Informational
100 :continue
101 :switching_protocols
102 :processing
@gabbio
gabbio / gist:1f3d03cea0695b677d31f89722e4fa4d
Created March 3, 2017 11:49 — forked from CristinaSolana/gist:1885435
Keeping a fork up to date

1. Clone your fork:

git clone git@github.com:YOUR-USERNAME/YOUR-FORKED-REPO.git

2. Add remote from original repository in your forked repository:

cd into/cloned/fork-repo
git remote add upstream git://github.com/ORIGINAL-DEV-USERNAME/REPO-YOU-FORKED-FROM.git
git fetch upstream