|
From: Luigi B. <lui...@gm...> - 2010-01-20 08:57:15
|
Hi all, unofficial Git mirrors of the QuantLib SVN trunk and 1.0 branch are available at <http://github.com/lballabio/quantlib> and <http://github.com/lballabio/quantlib-1.0>, respectively (for space reason, they only hold the QuantLib module; no bindings or addins.) If you're not part of the developer group and if you wanted to develop additional functionality on top of QuantLib, the Git mirrors above might be more useful than the previously available read-only access to Subversion. If you clone them, you get a local repository to which you can commit and from which you can easily generate patches to submit upstream. If you fork them, you can do the same and also get the possibility of a collaborative effort with others. Later, Luigi -- Debugging is twice as hard as writing the code in the first place. Therefore, if you write the code as cleverly as possible, you are, by definition, not smart enough to debug it. -- Brian W. Kernighan |
|
From: Andrea <mar...@go...> - 2010-01-20 21:11:09
|
On 20/01/10 08:56, Luigi Ballabio wrote: > > Hi all, > unofficial Git mirrors of the QuantLib SVN trunk and 1.0 branch are > available at <http://github.com/lballabio/quantlib> and > <http://github.com/lballabio/quantlib-1.0>, respectively (for space > reason, they only hold the QuantLib module; no bindings or addins.) > > If you're not part of the developer group and if you wanted to develop > additional functionality on top of QuantLib, the Git mirrors above might > be more useful than the previously available read-only access to > Subversion. If you clone them, you get a local repository to which you > can commit and from which you can easily generate patches to submit > upstream. If you fork them, you can do the same and also get the > possibility of a collaborative effort with others. > > Later, > Luigi > > Very good news. Do you plan to move permanently to git at some point? |
|
From: Luigi B. <lui...@gm...> - 2010-01-21 16:29:20
|
On Wed, 2010-01-20 at 21:11 +0000, Andrea wrote: > On 20/01/10 08:56, Luigi Ballabio wrote: > > > > unofficial Git mirrors of the QuantLib SVN trunk and 1.0 branch are > > available at <http://github.com/lballabio/quantlib> and > > <http://github.com/lballabio/quantlib-1.0>, respectively (for space > > reason, they only hold the QuantLib module; no bindings or addins.) > > > Very good news. > Do you plan to move permanently to git at some point? I don't know. I'd sure like to, but I'm not yet sure how much comfortable the other developers are with it. Luigi -- Do the right thing. It will gratify some people and astonish the rest. -- Mark Twain |
|
From: Andrea <mar...@go...> - 2010-01-23 20:22:43
|
On 21/01/10 16:28, Luigi Ballabio wrote: > On Wed, 2010-01-20 at 21:11 +0000, Andrea wrote: >> On 20/01/10 08:56, Luigi Ballabio wrote: >>> >>> unofficial Git mirrors of the QuantLib SVN trunk and 1.0 branch are >>> available at <http://github.com/lballabio/quantlib> and >>> <http://github.com/lballabio/quantlib-1.0>, respectively (for space >>> reason, they only hold the QuantLib module; no bindings or addins.) >>> >> Very good news. >> Do you plan to move permanently to git at some point? > > I don't know. I'd sure like to, but I'm not yet sure how much > comfortable the other developers are with it. > > Luigi > > > I am not an expert of git, so it might be wrong. Is it possible to set (on the master git repository) the pattern of files that should be ignored? Something like that *.[oa] *.lo *.la *~ .deps Makefile Makefile.in *.m4 in .git/info/exclude or it has to be set on every clone? |
|
From: Luigi B. <lui...@gm...> - 2010-01-26 15:04:46
|
On Sat, 2010-01-23 at 20:22 +0000, Andrea wrote: > On 21/01/10 16:28, Luigi Ballabio wrote: > > On Wed, 2010-01-20 at 21:11 +0000, Andrea wrote: > >> On 20/01/10 08:56, Luigi Ballabio wrote: > >>> > >>> unofficial Git mirrors of the QuantLib SVN trunk and 1.0 branch are > >>> available at <http://github.com/lballabio/quantlib> and > >>> <http://github.com/lballabio/quantlib-1.0>, respectively (for space > >>> reason, they only hold the QuantLib module; no bindings or addins.) > >>> > I am not an expert of git, so it might be wrong. > > Is it possible to set (on the master git repository) the pattern of > files that should be ignored? I think so (one can add a .gitignore file.) But unless I'm mistaken, due to mirroring a svn repository, the file would keep being rebased---which, I'm told, is not good for a public repository. Luigi -- To err is human -- to blame it on a computer is even more so. -- unknown |