[stringtemplate-interest] 4.0b2 released
Zenaan Harkness
zen at freedbms.net
Sat Jan 22 22:05:43 PST 2011
On Sun, Jan 23, 2011 at 16:20, Terence Parr <parrt at cs.usfca.edu> wrote:
> i'm not sure since I don't update it. i'd grab from the /depot/ST4 to get latest daily build but i have copied 4.0b2 stuff to download. note that i messed up those links below; 4.0.b1 -> 4.0b2 :)
>
> i have an account but don't know how to push to git hub ;) can you school me?
1)
You need your local .git repository to point correctly to the remote
github location, for pushing. To view your remotes, use:
git remote -v
You should have at least one remote, perhaps called "origin" if you
cloned off github to start with. If you have for some reason no
remotes, you use:
git remote add same-name-eg-origin URL
Your remote url should look something like one of:
git://github.com/antlr/stringtemplate4.git
https://github.com/antlr/stringtemplate4.git
I think git protocol version of your URL is necessary for git push to succeed.
If the url is wrong, you can change it. Assuming your remote is called origin:
git remote set-url origin CORRECTED-URL
2)
Secondly, in order to push you must have your ssh key(s) configured
properly with your github account.
I don't have a git hub account so I'm not sure about this part. A
quick google gives us, for linux and windows respectively:
http://help.github.com/linux-key-setup/
http://kylecordes.com/2008/git-windows-go
Both look pretty straightforward.
Regards
Zen
More information about the stringtemplate-interest
mailing list