-
Notifications
You must be signed in to change notification settings - Fork 0
Technical help
Bernhard von Stengel edited this page May 24, 2011
·
3 revisions
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
See also my further experiences with Git at