How do you see recent SVN log entries?

后端 未结 9 2207
生来不讨喜
生来不讨喜 2020-12-04 04:55

Typing svn log spits out an incredibly long, useless list on a command line. I have no idea why that is the default. If I wanted to read (or even could read) 30

9条回答
  •  醉梦人生
    2020-12-04 05:40

    To add to what others have said, you could also create an alias in your .bashrc or .bash_aliases file:

    alias svnlog='svn log -l 30 | less'
    

    or whatever you want as your default

提交回复
热议问题