Skip to content

Instantly share code, notes, and snippets.

View TGNThump's full-sized avatar
👋

Ben Pilgrim TGNThump

👋
View GitHub Profile
@TGNThump
TGNThump / save.py
Created November 3, 2019 20:44 — forked from mickael9/save.py
Factorio map metadata parser
from zipfile import ZipFile
from struct import Struct
class Deserializer:
u16 = Struct('<H')
u32 = Struct('<I')
def __init__(self, stream):
self.stream = stream
@TGNThump
TGNThump / using_git-svn.md
Last active August 22, 2019 08:03 — forked from rickyah/using_git-svn.md
A simple guide to git-svn

Getting started with git-svn

git-svn is a git command that allows using git to interact with Subversion repositories.git-svn is part of git, meaning that is NOT a plugin but actually bundled with your git installation. SourceTree also happens to support this command so you can use it with your usual workflow.

Reference: http://git-scm.com/book/en/v1/Git-and-Other-Systems-Git-and-Subversion

Cloning the SVN repository

You need to create a new local copy of the repository with the command