I want to add some aliases for the svn on macOS system. For instance:
svn ci "Some message" // equal to svn commit -m "Some message" svn addall // equal to svn add
What have I done for this?
I am new to svn, I used to use git and all the aliases were created in the .gitconfig file. Is this also possible in svn ?
UPDATE
Regarding this answer note, adding the following lines to the ~/.subversion/config file:
alias ciam = "commit -m" [alias] ciam = commit -m
command:
svn ciam
still not working.
Can svn aliases be defined?
source share