4337 links
  • Arnaud's links
  • Home
  • Login
  • RSS Feed
  • ATOM Feed
  • Tag cloud
  • Picture wall
  • Daily
Links per page: 20 50 100
page 1 / 1
15 results tagged svn x
  • Trouver la révision précédente d'un fichier sous svn..

    svn log -q -l 2 monfichier | grep -Eo 'r[0-9]+' | tail -1

    May 4, 2015 at 3:50:33 PM GMT+2 - permalink - archive.org - https://links.infomee.fr/?xGDKCA
    revision svn
  • Svn status output

    Pour avoir toujours l'output dans le même ordre (trié), ajouter au bashrc :

    function svn() {
    case $* in
    st ) shift 1; command svn status | sort -k 2 ;;

    • ) command svn "$@" ;;
      esac
      }
    January 7, 2015 at 10:35:15 AM GMT+1 - permalink - archive.org - https://links.infomee.fr/?nPIw-g
    status svn
  • thumbnail
    How can I view all historical changes to a file in SVN - Stack Overflow

    Sympa la fonction dans les commentaires, mais pour un gros historique, penser à rajouter un "-l 3" au svn log pour avoir seulement l'historique des 3 derniers changements.

    La version modifée avec le "-l 3" :

    !/bin/bash

    history_of_file

    #

    Outputs the full history of a given file as a sequence of

    logentry/diff pairs. The first revision of the file is emitted as

    full text since there's not previous version to compare it to.

    function history_of_file() {
    url=$1 # current url of file
    svn log -l 3 -q $url | grep -E -e "^r[[:digit:]]+" -o | cut -c2- | sort -n | {

    first revision as full text

        echo
        read r
        svn log -r$r $url@HEAD
        svn cat -r$r $url@HEAD
        echo

    remaining revisions as differences to previous revision

        while read r
        do
            echo
            svn log -r$r $url@HEAD
            svn diff -c$r $url@HEAD
            echo
        done
    }

    }

    history_of_file $1

    November 26, 2014 at 2:05:56 PM GMT+1 - permalink - archive.org - http://stackoverflow.com/questions/282802/how-can-i-view-all-historical-changes-to-a-file-in-svn
    history svn
  • Adding a directory to subversion, and ignoring the directory contents | Metal Toad

    Add the directory, while ignoring all of the files it contains:
    svn add -N [directory]

    After adding the directory enter the directory and run the following command:
    svn propset svn:ignore '*.*' .
    
    Commit your changes:
    svn commit -m "Added the directory and set the files within it to be ignored"
    July 21, 2014 at 12:06:36 PM GMT+2 - permalink - archive.org - http://www.metaltoad.com/blog/adding-directory-subversion-and-ignoring-directory-contents
    svn
  • 5 Fundamental differences between GIT & SVN « BoxySystems Inc.
    February 18, 2014 at 2:18:25 PM GMT+1 - permalink - archive.org - http://boxysystems.com/index.php/5-fundamental-differences-between-git-svn/
    git svn
  • What are the differences between SVN and Git? · GitHub Help
    February 18, 2014 at 2:08:49 PM GMT+1 - permalink - archive.org - https://help.github.com/articles/what-are-the-differences-between-svn-and-git
    git svn
  • Annuler un commit sur svn

    Comment annuler un commit sur svn...
    Git est vraiment mieux foutu..

    August 28, 2013 at 3:36:18 PM GMT+2 - permalink - archive.org - https://wiki.bordeaux.inria.fr/runtime/doku.php?id=svn
    svn
  • Version Control by Example
    January 19, 2013 at 3:02:49 PM GMT+1 - permalink - archive.org - http://www.ericsink.com/vcbe/
    control git mercurial svn vc version
  • Subversion Tutorial: 10 Most Used SVN Commands with Examples
    December 19, 2012 at 10:01:03 AM GMT+1 - permalink - archive.org - http://www.thegeekstuff.com/2011/04/svn-command-examples/
    svn
  • Créer un serveur Subversion - Linux
    December 8, 2012 at 6:05:56 PM GMT+1 - permalink - archive.org - http://www.siteduzero.com/tutoriel-3-58147-creer-un-serveur-subversion.html
    serveur svn
  • SVN: How to resolve a conflict tutorial | logicaltrinkets
    October 29, 2012 at 3:38:12 PM GMT+1 - permalink - archive.org - http://www.logicaltrinkets.com/wordpress/?p=178
    conflict svn
  • Utiliser vim pour voir les diff de svn diff

    $svndiffx .classpath

    cat ~/bin/svndiffx

    !/bin/bash

    svn diff --diff-cmd "/home/amm/bin/svnvimdiff" $1

    $cat /home/amm/bin/svnvimdiff

    !/bin/bash

    vim -d $6 $7

    September 26, 2012 at 1:56:35 PM GMT+2 - permalink - archive.org - https://links.infomee.fr/?Fhxz-A
    diff memo svn
  • SVN — Comment ignorer des fichiers ou des répertoires avec subversion ? - Commande du jour - math-linux.com
    August 29, 2012 at 11:09:04 PM GMT+2 - permalink - archive.org - http://www.math-linux.com/spip.php?article111
    ignore svn
  • Utilisation de SVN avec Eclipse
    December 7, 2011 at 9:00:10 PM GMT+1 - permalink - archive.org - http://baptiste-wicht.developpez.com/tutoriels/eclipse/svn/
    eclipse svn tuto
  • Developer Notes: Using google's free SVN repository with Eclipse

    Tuto pour utiliser un serveur svn google (google code) avec eclipse

    December 7, 2011 at 10:13:55 AM GMT+1 - permalink - archive.org - http://blog.msbbc.co.uk/2007/06/using-googles-free-svn-repository-with.html
    eclipse google svn
Links per page: 20 50 100
page 1 / 1
Shaarli - The personal, minimalist, super-fast, database free, bookmarking service by the Shaarli community - Help/documentation