Aucun résumé des modifications |
|||
| Ligne 32 : | Ligne 32 : | ||
:ouvrir un powershell et récupérer la liste des auteurs des commits | :ouvrir un powershell et récupérer la liste des auteurs des commits | ||
:{{syntaxhighlight|lang=winbatch|code= | :{{syntaxhighlight|lang=winbatch|code= | ||
svn.exe log --quiet | ? { $_ -notlike '-*' } | % { "{0} = {0} <{0}>" -f ($_ -split ' \| ')[1] } | Select-Object -Unique | Out-File 'authors-transform.txt' | {{#!: svn.exe log --quiet | ? { $_ -notlike '-*' } | % { "{0} = {0} <{0}>" -f ($_ -split ' \| ')[1] } | Select-Object -Unique | Out-File 'authors-transform.txt' }} | ||
}} | }} | ||
== Liens externes == | == Liens externes == | ||
<keywords content="SVN,Git,subversion"/>
svnserve.exe -d -r g:\svn
sc create svnserve binpath="\"C:\Program Files\TortoiseSVN\bin\svnserve.exe\" --service -r G:\SVN" displayname="Subversion Server" depend=Tcpip start=auto
sc start sbnserve
sc query svnserve
SERVICE_NAME: svnserve
TYPE : 10 WIN32_OWN_PROCESS
STATE : 4 RUNNING
(STOPPABLE, NOT_PAUSABLE, IGNORES_SHUTDOWN)
WIN32_EXIT_CODE : 0 (0x0)
SERVICE_EXIT_CODE : 0 (0x0)
CHECKPOINT : 0x0
WAIT_HINT : 0x0
svn.exe log --quiet| ? { $_ -notlike '-*' } | % { "{0} = {0} <{0}>" -f ($_ -split ' \| ')[1] } | Select-Object -Unique | Out-File 'authors-transform.txt'