From mboxrd@z Thu Jan 1 00:00:00 1970 From: Alfred Perlstein Subject: [PATCH] Document the 'svn propset' command. Date: Sun, 12 Jun 2016 12:15:50 -0700 Message-ID: <20160612191550.GA14160@elvis.mu.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: git@vger.kernel.org, Eric Wong , Joseph Pecoraro , David Fraser To: gitster@pobox.com X-From: git-owner@vger.kernel.org Sun Jun 12 21:23:56 2016 Return-path: Envelope-to: gcvg-git-2@plane.gmane.org Received: from vger.kernel.org ([209.132.180.67]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1bCAzE-0005Di-2z for gcvg-git-2@plane.gmane.org; Sun, 12 Jun 2016 21:23:56 +0200 Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753010AbcFLTXm (ORCPT ); Sun, 12 Jun 2016 15:23:42 -0400 Received: from elvis.mu.org ([192.203.228.196]:17074 "EHLO elvis.mu.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752786AbcFLTXm (ORCPT ); Sun, 12 Jun 2016 15:23:42 -0400 X-Greylist: delayed 470 seconds by postgrey-1.27 at vger.kernel.org; Sun, 12 Jun 2016 15:23:42 EDT Received: by elvis.mu.org (Postfix, from userid 1192) id B8DB3346DFD0; Sun, 12 Jun 2016 12:15:50 -0700 (PDT) Content-Disposition: inline User-Agent: Mutt/1.5.24 (2015-08-30) Sender: git-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: git@vger.kernel.org Archived-At: Junio + all, A week ago I was requested to provide documentation for the 'svn propset' command. I have attached a diff off of the 'maint' branch for this, however it seems to apply cleanly to 'master' as well. Thank you for your patience. This is also available on my github here: https://github.com/splbio/git/tree/document_propset --- Documentation/git-svn.txt | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/Documentation/git-svn.txt b/Documentation/git-svn.txt index fb23a98..e104824 100644 --- a/Documentation/git-svn.txt +++ b/Documentation/git-svn.txt @@ -459,6 +459,20 @@ Any other arguments are passed directly to 'git log' Gets the Subversion property given as the first argument, for a file. A specific revision can be specified with -r/--revision. +'propset':: + Sets the Subversion property given as the first argument, to the + value given as the second argument for the file given as the + third argument. ++ +Example: ++ +------------------------------------------------------------------------ +git svn propset svn:keywords "FreeBSD=%H" devel/py-tipper/Makefile +------------------------------------------------------------------------ ++ +This will set the property 'svn:keywords' to 'FreeBSD=%H' for the file +'devel/py-tipper/Makefile'. + 'show-externals':: Shows the Subversion externals. Use -r/--revision to specify a specific revision. -- 2.7.1