Skip to content

Instantly share code, notes, and snippets.

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

Carsten BanditsBacon

🏠
Working from home
  • Cologne
View GitHub Profile
@BanditsBacon
BanditsBacon / .gitignore
Created March 1, 2017 15:18 — forked from pholas/.gitignore
.gitignore for Xcode 8 and Swift 3
## OS X files
.DS_Store
.DS_Store?
.Trashes
.Spotlight-V100
*.swp
## Xcode build files
DerivedData/
build/

Keybase proof

I hereby claim:

  • I am banditsbacon on github.
  • I am banditsbacon (https://keybase.io/banditsbacon) on keybase.
  • I have a public key whose fingerprint is BFB3 2ACB A563 D531 873D B378 4B4D 39EB C896 AECE

To claim this, I am signing this object:

@BanditsBacon
BanditsBacon / gist:2a7741bbe630a1132d15
Created November 7, 2015 15:16 — 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