svn log -q -l 2 monfichier | grep -Eo 'r[0-9]+' | tail -1
 -
                
                https://links.infomee.fr/?xGDKCA
  
 -
                
                https://links.infomee.fr/?xGDKCAPour 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 ;;
 -
                
                https://links.infomee.fr/?nPIw-g
  
 -
                
                https://links.infomee.fr/?nPIw-gSympa 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" :
#
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 | {
    echo
    read r
    svn log -r$r $url@HEAD
    svn cat -r$r $url@HEAD
    echo    while read r
    do
        echo
        svn log -r$r $url@HEAD
        svn diff -c$r $url@HEAD
        echo
    done
}}
history_of_file $1
 -
                
                http://stackoverflow.com/questions/282802/how-can-i-view-all-historical-changes-to-a-file-in-svn
  
 -
                
                http://stackoverflow.com/questions/282802/how-can-i-view-all-historical-changes-to-a-file-in-svnAdd 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" -
                
                http://www.metaltoad.com/blog/adding-directory-subversion-and-ignoring-directory-contents
  
 -
                
                http://www.metaltoad.com/blog/adding-directory-subversion-and-ignoring-directory-contentsComment annuler un commit sur svn...
Git est vraiment mieux foutu..
 -
                
                https://wiki.bordeaux.inria.fr/runtime/doku.php?id=svn
  
 -
                
                https://wiki.bordeaux.inria.fr/runtime/doku.php?id=svn$svndiffx .classpath
cat ~/bin/svndiffx
svn diff --diff-cmd "/home/amm/bin/svnvimdiff" $1
$cat /home/amm/bin/svnvimdiff
vim -d $6 $7
 -
                
                https://links.infomee.fr/?Fhxz-A
  
 -
                
                https://links.infomee.fr/?Fhxz-ATuto pour utiliser un serveur svn google (google code) avec eclipse
 -
                
                http://blog.msbbc.co.uk/2007/06/using-googles-free-svn-repository-with.html
  
 -
                
                http://blog.msbbc.co.uk/2007/06/using-googles-free-svn-repository-with.html