Skip to content

Instantly share code, notes, and snippets.

View Niceno's full-sized avatar

Bojan Niceno Niceno

  • Paul Scherrer Institute (PSI) / Swiss Federal Institute of Technology (ETHZ)
View GitHub Profile
@Niceno
Niceno / OOP_F2003_Part_1.md
Created September 20, 2020 04:41 — forked from n-s-k/OOP_F2003_Part_1.md
Object-Oriented Programming in Fortran 2003 Part 1: Code Reusability
@Niceno
Niceno / gist:0698bafde8551f41150c27da080b1635
Created October 24, 2017 11:39 — 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