Skip to content
Prev 8303 / 21312 Next

[Bioc-devel] Gviz: implementing support for FaFiles from AnnotationHub

For what it's worth and from an earlier comment in this thread, one way to use git (for Johanne's benefit) within the context of svn (for Florian's benefit) is to svn co Gviz, then on top of svn create a new git repository branch and update at will, then merge changes to master and provide florian with svn diff. Something like

    svn co https://hedgehog.fhcrc.org/bioconductor/trunk/madman/Rpacks/Gviz
    cd Gviz/
    git init 
    git add .
    git commit -a -m "initial commit"
    git checkout -b my_mods
    ## amazing changes
    git commit -a -m "my amazing changes"
    git checkout master 
    svn st                        # no changes
    git merge my_mods 
    svn st                         # my amazing changes
    svn diff > Gviz.diff     # ... as a diff for Florian