2013-06-16 7 views

답변

2

darcs whatsnewgit diff에 해당합니다 (단 darcs wh 또는 darcs wha에 축약 될 수있는) (하지만, 명심, darcs 힘내 지수의 개념이 없음) .

helm:myproj oleg$ darcs wha -ls 
M ./basicmodule.py -2 +1 
A ./newfile.py 
a ./temp.txt 
:

darcs whatsnew -ls (--look-for-adds --summary과 동일)을 작업 디렉토리의 변화에 ​​대한 개요를 제공 git status에 가까운

1

(http://irclog.perlgeek.de/darcs/2009-04-01에서 답을 찾을.) (. 나는 darcs-2.1.2을 사용하고 있습니다)

darcs whatsnew -l 

darcs whatsnew --help에 따르면

-l --look-for-adds  look for (non-boring) files that could be added 

베어 darcs whatsnew을 인쇄를 diffs가있는 거대한 출력 (많은 diff가있는 경우). 정보가 있어도 볼 수는 없지만이 옵션은 좋습니다. 예를 들어

:

/etc/modprobe.d # darcs init 
/etc/modprobe.d # darcs add -r . 
/etc/modprobe.d # darcs whatsnew -l 
A ./aliases 
A ./alsa-modindex 
A ./alsa-modindex.rpmnew 
A ./arch 
A ./blacklist 
A ./blacklist-cups 
A ./blacklist-edac 
A ./blacklist-framebuffer 
A ./blacklist-hwmon 
A ./blacklist-net 
A ./blacklist-watchdog 
A ./install 
A ./isapnp 
A ./options 
A ./oss 
/etc/modprobe.d # darcs remove ./alsa-modindex.rpmnew 
/etc/modprobe.d # darcs whatsnew -l 
A ./aliases 
A ./alsa-modindex 
A ./arch 
A ./blacklist 
A ./blacklist-cups 
A ./blacklist-edac 
A ./blacklist-framebuffer 
A ./blacklist-hwmon 
A ./blacklist-net 
A ./blacklist-watchdog 
A ./install 
A ./isapnp 
A ./options 
A ./oss 
a ./alsa-modindex.rpmnew 
/etc/modprobe.d # 

그래서, 작은 "는"비 추적 파일입니다. 큰 "A"는 아마도 추가 된 것일 수도 있지만 기록되지 않은 것입니까?

예, 그렇습니다. 내가 darcs record를 실행 한 후에 만 ​​비 추적 하나 남아 :

/etc/modprobe.d # darcs whatsnew -l 
a ./alsa-modindex.rpmnew 
/etc/modprobe.d #