Note:

If you want to create a new page for developers, you should create it on the Moodle Developer Resource site.

Talk:Tracking Moodle CVS with git: Difference between revisions

From MoodleDocs
No edit summary
Line 13: Line 13:


GIT seem to be "quite the rage" now. Now I'm wondering should I try to get into that while I'm still learning CVS? A google search reveals at least one plugin for GIT and NetBeans: NBgit.
GIT seem to be "quite the rage" now. Now I'm wondering should I try to get into that while I'm still learning CVS? A google search reveals at least one plugin for GIT and NetBeans: NBgit.
=== CVS Export ===
Is that command example even correct - "GIT_DIR=../moodle-19/.git git cvsexportcommit b38cb61" doesn't look like any correct syntax and is nothing like the example in the manual page..  --[[User:Howard Miller|Howard Miller]] 10:22, 14 October 2009 (UTC)
              $ export GIT_DIR=~/project/.git
              $ cd ~/project_cvs_checkout
              $ git cvsexportcommit -v <commit-sha1>
              $ cvs commit -F .msg <files>

Revision as of 10:22, 14 October 2009

I am currently doing a bit of an overhaul of this page to remove obsolete coigto stuff - dont really see a reason why anyone would use it or want docs for it.--Dan Poltawski 17:04, 1 October 2008 (CDT)

Great! Thanks! --Eloy Lafuente (stronk7) 17:05, 1 October 2008 (CDT)

Mass merge

"...If you are applying patches to CVS, you can then use git-cvsexportcommit or plain old patch -p1 filename..."

can anybody please elaborate a bit? Provide and example? TIA --David Mudrak 15:30, 18 December 2008 (CST)

Anyone got any experience with NetBeans and GIT?

I've just started getting into CVS and am using netBeans. I like NetBeans so far and using the usual CVS seems to work OK.

GIT seem to be "quite the rage" now. Now I'm wondering should I try to get into that while I'm still learning CVS? A google search reveals at least one plugin for GIT and NetBeans: NBgit.

CVS Export

Is that command example even correct - "GIT_DIR=../moodle-19/.git git cvsexportcommit b38cb61" doesn't look like any correct syntax and is nothing like the example in the manual page.. --Howard Miller 10:22, 14 October 2009 (UTC)

              $ export GIT_DIR=~/project/.git
              $ cd ~/project_cvs_checkout
              $ git cvsexportcommit -v <commit-sha1>
              $ cvs commit -F .msg <files>