Skip to content

Technical help

Bernhard von Stengel edited this page May 24, 2011 · 3 revisions

Getting started as a Gambit contributor

Creating your own github account:

https://github.com/signup/free

create a repository

click on "Wiki"

create a wiki page

http://progit.org/book/ch1-5.html

create a local copy on your computer:

http://help.github.com/linux-set-up-git/

cd .ssh
ls
known_hosts
ssh-keygen -t rsa -C "stengel@nash.lse.ac.uk"

(use default file names, and passphrase)

git config --global user.name "Bernhard von Stengel"
git config --global user.email stengel@nash.lse.ac.uk
git config --global merge.tool vimdiff
git config --global core.editor /usr/bin/vim

git config --list

http://gitref.org/basic/

See also my further experiences with Git at

https://github.com/stengel/gambit/wiki/Git

Clone this wiki locally