Pagine

Tuesday 18 April 2017

Artifactory - How to get the storage informations via web console.

Artifactory allows you to monitor various statistics related to the amount of storage that repositories occupy in your server. For example, you can view the artifacts number, binaries size and free disk space. To monitor usage of storage in your server, need the admin grants.
In some older versions of Artifactory (as 3.x), this section is available in Admin -> Advanced -> Storage Summary. See the screenshots below:
Admin Section

Menu Admin
In other versions (as artifactory pro 4.x), this section is available in Admin -> Advanced -> Storage.
For more details about the monitor storage page see the official documentation.

Wednesday 5 April 2017

SVN tutorial n 33 - propdel

The "svn propdel " command removes the property of one or more items under version control.
The synopsis is:
 svn propdel <prop_name> [<path_target>...]
or
 svn propdel <prop_name> --revprop -r <svn_revision> [<file_target>]
The first form removes versioned properties in your working copy, and the second removes unversioned remote properties on a repository revision (<file_target>).

Example:

I want remove the property used in tutorial n 32.
 svn propdel svn:ignore mydir

Tuesday 4 April 2017

SVN tutorial n 32 - propedit

The "svn propedit" command, different from "svn propset" amending the value of properties, edits the property of one or more items under version control. The synopsis is:
 svn propedit <prop_name> <file_target>
or
 svn propedit <prop_name> --revprop -r <svn_revision> [<file_target>]

Example: 

I have a cache directory (mydir) that I don't need under source control.
 svn propedit svn:ignore mydir