2009 -- the year of November. <november-wiki.org> <github.com/viklund/november> <irclog.perlgeek.de/november-wiki> <nopaste.snit.ch>
Set by moderator on 27 January 2009.
07:07 masak joined 09:26 szabgab_ joined 10:34 zarah joined 10:36 zarah joined 10:38 zarah joined 16:39 p6eval joined 18:11 Tene_ joined 18:49 viklund joined
szabgab_ anyone ? I need some help with git: 18:51
I cloned november 18:52
fixed a small thing
now I'd like to push it out somewhere
how do I do that ?
viklund szabgab_: ah, you need a commit bit for that 18:56
do you have a github account? 18:57
I'll add you to the commiters on github 18:58
szabgab_ yes, it is szabgab
viklund ok, lets see... 18:59
szabgab_ this is the first time I am using git so pls be patient with me ... whatever this is a version control after all
viklund so, now you are allowed to commit to november 19:00
the problem is, you have probably cloned the public uri...
you need to clone from the commiter one to be able to commit, but it's not that hard to change 19:01
szabgab_ listening
viklund ;) 19:02
szabgab_ and trying to read about git in the meantime :-)
viklund I'm sure there's a command for doing this, but I always edit the textfile directly...
check the file .git/config in the root of the checkout
there's a remote origin section there
szabgab_ yes 19:03
viklund what
what's the url?
szabgab_ git://github.com/viklund/november.git
viklund as I thought, change it to git@github.com:viklund/november.git 19:04
and then you should be able to push 19:05
19:05 masak joined
masak OH HAI 19:05
zarah hello masak, you fantastic person you
masak zarah: hi
zarah hello masak :)
viklund OH HAI 19:06
zarah privet viklund
szabgab_ I should first commit, shouldn't I ?
viklund yes, first commit 19:07
then I pull, to make sure that I'm at HEAD (git will complain if you need to pull) and then I push. 19:08
szabgab_ so I committed but then I could not push 19:09
I guess I need to configure my username first ?
or put my public key in github ?
viklund ahh, you need to upload a ssh key to github 19:10
masak github.com/guides/providing-your-ssh-key
zarah masak's link is also tinyurl.com/3yepyr
szabgab_ thanks, pushed 19:16
viklund great!
welcome!
szabgab_ thanks for the commit bit 19:17
btw I still cannot compile Dispatcher.pm
viklund hmm
szabgab_ I get Re-declaration of type Dispatcher at line 47, near "" 19:18
but there are only 45 lines in that file :-)
masak szabgab_: let me see if I can reproduce that. 19:19
szabgab_: do you have the latest of everything?
viklund I also get that compile error... 19:20
szabgab_ yes I built everything about an hour ago
masak ok. 19:21
I know that error.
viklund Found it!
masak it usually depends on A::B being declared before A
viklund yes, that was the problem 19:22
masak szabgab_: you're in viklund's good hands here.
I'm currently tracking down a very strange Druid bug.
viklund quickfix: move use Dispatcher::Rule to inside the curlies
szabgab_ yes that helped 19:23
masak wonders if he reported that bug in the past week or not
szabgab_ same thing in November 19:24
masak please someone commit so that it works again for now.
viklund *sigh* yes I know
I will
masak viklund++
we'll soon be targetting a stable Rakudo instead of this quagmire :)
szabgab_ so shall I commit it ? 19:25
viklund pushed...
szabgab_: i bet you to it ;) 19:26
szabgab_ next time I won't ask :-)
masak szabgab_: here, the law of the jungle rules :P
to commit or to be committed.
or something.
viklund err...
masak //... 19:27
szabgab_ so now I cannot pull as my file was changed,
moritz_ in ... the jungle rules you ;-)
viklund yes, I could have guessed...
masak szabgab_: 'git co $file'
szabgab_: 'git pull origin master'
szabgab_ commit ?
masak oops, sorry. checkout.
(I have aliases here, co=checkout) 19:28
szabgab_ apparently I do as well :-) 19:29
)
still so that checkout will remove my changes
but what if I wanted to merge them with those that are in master? 19:30
masak 'git stash', et cetera
I guess.
viklund ehh, no, then you commit, then you pull
szabgab_ seems I am to read some gittish
viklund the pull will protest if it's not a trivial merge 19:31
masak aye, what viklund said
viklund and you'll have to edit the conflicts
masak ...with whatever tool.
viklund (and commit them I think)
masak aye.
szabgab_ so I could make November but test(s) fail 19:35
masak szabgab_: checking. 19:37
szabgab_: I have failures in t/dispatcher/02 t/markup/mediawiki/06,08..15 19:41
yours same?
um, and I'm in a branch, so you might not have 12-15 :) 19:42
the first test failure appears to be a Parrot parsing bug. 19:44
two of the mediawiki failures are regressions, I think.
the rest are unimplemented features and shouldn't really be in master right now at all.
szabgab_ masak: some of them 19:47
masak szabgab_: you're getting some of them, or some of them are what you're getting? 19:48
szabgab_ but my main concern currently is HTML::Template which works
masak right. :)
the one thing we plan to deprecate, and you want it. :)
szabgab_ so don't worry about it now
yeah but moritz_ will pick it up and I'll help if I can as I am an avid CGI::application and HTML::Template user 19:49
masak szabgab_: I see. 19:50
szabgab_ anyway, back to my little application ...
masak szabgab_: ihrd, Tene_ and I are in the process of creating a Web framework for Perl 6. 19:51
it'll involve templating solutions, but they will be on the level below and above HTML::Template, respectively.
szabgab_ I'd be glad to be involved if I have the time 19:52
masak you're welcome to help. 19:53
szabgab_ is there a localtime or similar function in p6 ? 19:54
masak rakudo: say time
p6eval rakudo 36332: OUTPUT«1233690880.96376␤»
szabgab_ yeah I found that
but I'd like to put the timestamp on a web page 19:55
masak go right ahead. :)
szabgab_ it is a good start but I think humans will prefer other formatting :-)
masak I don't recall anyone writing such a converter.
you'd be the first one.
we have relative time in November, though, thanks to ihrd++ 19:56
szabgab_ finally I have the first pages generated 19:57
www.whitecamel.org/
masak cool!
szabgab_ thanks for your help! 19:58
masak np
20:08 viklund joined
viklund making... 20:16
masak time to head home, I think... 20:23
viklund dumdidum... 20:34