How to push changes to your Etherpad using Git and Github (Debian)
[bash] apt-get install git-core [/bash] Goto http://github.com/redhog/pad Click Fork Go to http://github.com/YOURUSERNAME/pad Copy the git@github.com:YOURUSERNAME/pad.git IE ( [bash]git clone git@github.com/johnyma22/pad.git [/bash] ) Set the comment. [bash] git commit -a -m “Added Hello World” git remote rm origin git remote add origin git@github.com:YOURUSERNAME/pad.git [/bash] IE ( [bash] git remote add origin git@github.com:johnyma22/pad.gif [/bash] )
If you don’t already have an ssh key ( [bash] ssh-keygen -t rsa [/bash] use defaults cat the path to the .pub (Copy the contents)_ Open up Github.com and login Click Account settings Click Add public Key Give it a title (ie etherpad) Paste the contents of the .pub file ) [bash] git push [/bash] Done =)