InfoHeap
Tech
Navigation
  • Home
  • Tutorials
    • CSS tutorials & examples
    • CSS properties
    • Javascript cookbook
    • Linux/Unix Command Line
    • Mac
    • PHP
      • PHP functions online
      • PHP regex
    • WordPress
  • Online Tools
    • Text utilities
    • Online Lint Tools
search

Svn tutorials

  • Diff last committed change
  • Edit log message for a committed revision
  • Make file executable on Linux
  • Recover svn lost password on Linux
  • Short diff without context
  • Svn log of all files in a directory
  • Svn log of entire repository
  • Undo last commit
  • View older version of a file
 
  • Home
  • > Tutorials
  • > Svn

Svn log of all files in a directory

By admin on Jan 9, 2016

Sometime we need to see svn log of all files in a directory (including all files in all its subdirectories). Here are some approaches.

Using repository url

First find the repository url of the directory by running svn info in that directory.

$ svn info
URL: http://svnserver.com/reporoot/dir1/dir2

Now use svn log on the directory repository url (not the root url)

$ svn log http://svnserver.com/reporoot/dir1/dir2

Using local svn log

Go to the the directory in local svn repository. Run svn update and then svn log as shown below:

$ cd /path_to_desired_svn_local_directory
$ svn udpate
$ svn log .

Note that command svn update is required. Otherwise you may see stale log information.

Suggested posts:

  1. Bash associative array tutorial
  2. Mac Finder – how to search system hidden files
  3. Mysql – how to copy a table
  4. CSS clearfix – clear float automatically using ::after
  5. Php look ahead and look behind regex examples
  6. How to join multiple pdf files on Mac
  7. Jenkins how to clone a project
  8. CSS visibility – hide an element keeping its space
Share this article: share on facebook share on linkedin tweet this submit to reddit
Posted in Tutorials | Tagged Linux/Unix Command Line, Svn, Tutorials
  • Browse content
  • Article Topics
  • Article archives
  • Contact Us
Popular Topics: Android Development | AngularJS | Apache | AWS and EC2 | Bash shell scripting | Chrome developer tools | Company results | CSS | CSS cookbook | CSS properties | CSS Pseudo Classes | CSS selectors | CSS3 | CSS3 flexbox | Devops | Git | HTML | HTML5 | Java | Javascript | Javascript cookbook | Javascript DOM | jQuery | Kubernetes | Linux | Linux/Unix Command Line | Mac | Mac Command Line | Mysql | Networking | Node.js | Online Tools | PHP | PHP cookbook | PHP Regex | Python | Python array | Python cookbook | SEO | Site Performance | SSH | Ubuntu Linux | Web Development | Webmaster | Wordpress | Wordpress customization | Wordpress How To | Wordpress Mysql Queries | InfoHeap Money

Copyright © 2025 InfoHeap.

Powered by WordPress