Lines Matching full:svn
47 * ``svn co http://llvm.org/svn/llvm-project/llvm/trunk llvm``
53 * ``svn co http://llvm.org/svn/llvm-project/cfe/trunk clang``
59 * ``svn co http://llvm.org/svn/llvm-project/compiler-rt/trunk compiler-rt``
65 * ``svn co http://llvm.org/svn/llvm-project/openmp/trunk openmp``
71 * ``svn co http://llvm.org/svn/llvm-project/libcxx/trunk libcxx``
72 * ``svn co http://llvm.org/svn/llvm-project/libcxxabi/trunk libcxxabi``
78 * ``svn co http://llvm.org/svn/llvm-project/test-suite/trunk test-suite``
457 * Read-Only: ``svn co http://llvm.org/svn/llvm-project/llvm/trunk llvm``
458 * Read-Write: ``svn co https://[email protected]/svn/llvm-project/llvm/trunk llvm``
501 % svn co http://llvm.org/svn/llvm-project/test-suite/trunk test-suite
510 automatically with each Subversion commit and contain all necessary git-svn
511 marks (so, you can recreate git-svn metadata locally). Note that right now
583 It is a little different from svn-generated diff. git-diff-generated diff has
618 .. _developers-work-with-git-svn:
620 For developers to work with git-svn
623 To set up clone from which you can submit code using ``git-svn``, run:
629 % git svn init https://llvm.org/svn/llvm-project/llvm/trunk --username=<username>
630 % git config svn-remote.svn.fetch :refs/remotes/origin/master
631 % git svn rebase -l # -l avoids fetching ahead of the git mirror.
637 % git svn init https://llvm.org/svn/llvm-project/cfe/trunk --username=<username>
638 % git config svn-remote.svn.fetch :refs/remotes/origin/master
639 % git svn rebase -l
643 To update this clone without generating git-svn tags that conflict with the
650 % git svn rebase -l
653 git svn rebase -l)
662 git-svn, please look in the directory for the scripts ``git-svnup`` and
668 If one wishes to revert a commit with git-svn, but do not want the git hash to
671 revert, look up the appropriate svn revision, and output a message where all
672 references to the git hash have been replaced with the svn revision.
674 To commit back changes via git-svn, use ``git svn dcommit``:
678 % git svn dcommit
680 Note that git-svn will create one SVN commit for each Git commit you have pending,
684 On success, ``dcommit`` will rebase against the HEAD of SVN, so to avoid conflict,
688 The git-svn metadata can get out of sync after you mess around with branches and
689 ``dcommit``. When that happens, ``git svn dcommit`` stops working, complaining
694 % rm -rf .git/svn
695 % git svn rebase -l
697 Please, refer to the Git-SVN manual (``man git-svn``) for more information.