Skip to content

Instantly share code, notes, and snippets.

View jeffreyssmith2nd's full-sized avatar

Jeffrey Smith II jeffreyssmith2nd

View GitHub Profile
@jeffreyssmith2nd
jeffreyssmith2nd / GitSubmodule.md
Created March 27, 2019 18:32
Useful additions for git submodules

Run in a terminal

git config --global status.submoduleSummary true
git config --global diff.submodule log

Add the following somewhere on your path as git-spull

#!/bin/bash
git pull "$@" &&
@jeffreyssmith2nd
jeffreyssmith2nd / docker-compose.yml
Created April 13, 2018 13:31
Docker Compose for running an instance of the 3/28/18 build of eosio.
version: "3"
services:
eosio:
image: eosio/eos:20180328
ports:
- "8888:8888"
- "9876:9876"
command: /opt/eosio/bin/nodeosd.sh --resync-blockchain
volumes:
- ./eosio-volume/config:/opt/eosio/bin/data-dir