Skip to content

Instantly share code, notes, and snippets.

@auremoser
auremoser / 2015-08-19-webmapping.md
Last active March 16, 2020 06:10
GDI - Webmap Workshop

Intro to Web Mapping + GIS

###Girl Develop It

Aurelia Moser, @auremoser, [email protected]

Andy Eschbacher, @MrEPhysics, [email protected]

August 19th, 2015

MapGirl

Find this document here:

@jacobvosmaer
jacobvosmaer / gist:3187346
Created July 27, 2012 10:35
Open all files with git merge conflicts in Vim

Open all files with git merge conflicts in MacVim

git diff --name-only | uniq | xargs mvim

When git encounters a merge conflict, e.g. during a rebase, it drops you back into the shell with a dirty working directory. I like this one-liner for opening all files with a merge conflict in MacVim.

Once you're in Vim, you can then switch between the files with :n and :prev, or another favourite: :w | n (save current file and open the next command line-supplied file).

UPDATE: see below for a version that works with real terminal commands.