git@vger.kernel.org mailing list mirror (one of many)
 help / color / mirror / code / Atom feed
* [PATCH] Document the 'svn propset' command.
@ 2016-06-12 19:15 Alfred Perlstein
  2016-06-13  6:59 ` Pranit Bauva
  2016-06-15  5:19 ` Alfred Perlstein
  0 siblings, 2 replies; 11+ messages in thread
From: Alfred Perlstein @ 2016-06-12 19:15 UTC (permalink / raw)
  To: gitster; +Cc: git, Eric Wong, Joseph Pecoraro, David Fraser

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

^ permalink raw reply related	[flat|nested] 11+ messages in thread

* Re: [PATCH] Document the 'svn propset' command.
  2016-06-12 19:15 [PATCH] Document the 'svn propset' command Alfred Perlstein
@ 2016-06-13  6:59 ` Pranit Bauva
  2016-06-13 12:52   ` Alfred Perlstein
  2016-06-15  5:19 ` Alfred Perlstein
  1 sibling, 1 reply; 11+ messages in thread
From: Pranit Bauva @ 2016-06-13  6:59 UTC (permalink / raw)
  To: Alfred Perlstein
  Cc: Junio C Hamano, Git List, Eric Wong, Joseph Pecoraro,
	David Fraser

Hey Alfred,

On Mon, Jun 13, 2016 at 12:45 AM, Alfred Perlstein <alfred@freebsd.org> wrote:
> 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

I am not particularly sure whether the above could form a good commit
message. I think you wanted to include this as a comment. git-am picks
up these patches. The title commit is taken from the subject stripping
the '[PATCH]'. Then the body before '---' is taken as the rest of the
commit message. Then the diff is applied. To include comments add them
after ---. Also please have a look at Documentation/SubmittingPatches.
Also missing signoff. For the patch to actually be accept you need to
follow those instructions. Thanks for contributing.

> ---
>  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.

Regards,
Pranit Bauva

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PATCH] Document the 'svn propset' command.
  2016-06-13  6:59 ` Pranit Bauva
@ 2016-06-13 12:52   ` Alfred Perlstein
  2016-06-13 14:24     ` Pranit Bauva
  0 siblings, 1 reply; 11+ messages in thread
From: Alfred Perlstein @ 2016-06-13 12:52 UTC (permalink / raw)
  To: Pranit Bauva
  Cc: Junio C Hamano, Git List, Eric Wong, Joseph Pecoraro,
	David Fraser

Thank you Pranit.  I thought that "signed off by" is used once someone 
approved my patch as opposed to when it's in "proposal" stage.  This was 
my first email with a patch for this issue, who should/could I have used 
for "signoff"?


-Alfred


On 6/12/16 11:59 PM, Pranit Bauva wrote:
> Hey Alfred,
>
> On Mon, Jun 13, 2016 at 12:45 AM, Alfred Perlstein <alfred@freebsd.org> wrote:
>> 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
> I am not particularly sure whether the above could form a good commit
> message. I think you wanted to include this as a comment. git-am picks
> up these patches. The title commit is taken from the subject stripping
> the '[PATCH]'. Then the body before '---' is taken as the rest of the
> commit message. Then the diff is applied. To include comments add them
> after ---. Also please have a look at Documentation/SubmittingPatches.
> Also missing signoff. For the patch to actually be accept you need to
> follow those instructions. Thanks for contributing.
>
>> ---
>>   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.
> Regards,
> Pranit Bauva
>

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PATCH] Document the 'svn propset' command.
  2016-06-13 12:52   ` Alfred Perlstein
@ 2016-06-13 14:24     ` Pranit Bauva
  2016-06-13 14:42       ` Pranit Bauva
  0 siblings, 1 reply; 11+ messages in thread
From: Pranit Bauva @ 2016-06-13 14:24 UTC (permalink / raw)
  To: Alfred Perlstein
  Cc: Junio C Hamano, Git List, Eric Wong, Joseph Pecoraro,
	David Fraser

Hey Alfred,

On Mon, Jun 13, 2016 at 6:22 PM, Alfred Perlstein <alfred@freebsd.org> wrote:
> Thank you Pranit.  I thought that "signed off by" is used once someone
> approved my patch as opposed to when it's in "proposal" stage.  This was my
> first email with a patch for this issue, who should/could I have used for
> "signoff"?

Signoff is used to indicate that you are OKAY with releasing your
patch according to git's license. For more details see the
Documentation/SubmittingPatches[1]. To summarize you will have to add
this in the end :

   Signed-off-by: Alfred Perlstein <alfred@freebsd.org>

Though I will still recommend you to go through [1] properly.

Regards,
Pranit Bauva

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PATCH] Document the 'svn propset' command.
  2016-06-13 14:24     ` Pranit Bauva
@ 2016-06-13 14:42       ` Pranit Bauva
  2016-06-13 22:09         ` Alfred Perlstein
  0 siblings, 1 reply; 11+ messages in thread
From: Pranit Bauva @ 2016-06-13 14:42 UTC (permalink / raw)
  To: Alfred Perlstein
  Cc: Junio C Hamano, Git List, Eric Wong, Joseph Pecoraro,
	David Fraser

Hey Alfred,

On Mon, Jun 13, 2016 at 7:54 PM, Pranit Bauva <pranit.bauva@gmail.com> wrote:
> Hey Alfred,
>
> On Mon, Jun 13, 2016 at 6:22 PM, Alfred Perlstein <alfred@freebsd.org> wrote:
>> Thank you Pranit.  I thought that "signed off by" is used once someone
>> approved my patch as opposed to when it's in "proposal" stage.  This was my
>> first email with a patch for this issue, who should/could I have used for
>> "signoff"?
>
> Signoff is used to indicate that you are OKAY with releasing your
> patch according to git's license. For more details see the
> Documentation/SubmittingPatches[1]. To summarize you will have to add
> this in the end :
>
>    Signed-off-by: Alfred Perlstein <alfred@freebsd.org>
>
> Though I will still recommend you to go through [1] properly.

Oops I forgot to put the link.

[1]: https://github.com/git/git/blob/master/Documentation/SubmittingPatches#L239-L307

Regards,
Pranit Bauva

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PATCH] Document the 'svn propset' command.
  2016-06-13 14:42       ` Pranit Bauva
@ 2016-06-13 22:09         ` Alfred Perlstein
  0 siblings, 0 replies; 11+ messages in thread
From: Alfred Perlstein @ 2016-06-13 22:09 UTC (permalink / raw)
  To: Pranit Bauva
  Cc: Junio C Hamano, Git List, Eric Wong, Joseph Pecoraro,
	David Fraser



On 6/13/16 7:42 AM, Pranit Bauva wrote:
> Hey Alfred,
>
> On Mon, Jun 13, 2016 at 7:54 PM, Pranit Bauva <pranit.bauva@gmail.com> wrote:
>> Hey Alfred,
>>
>> On Mon, Jun 13, 2016 at 6:22 PM, Alfred Perlstein <alfred@freebsd.org> wrote:
>>> Thank you Pranit.  I thought that "signed off by" is used once someone
>>> approved my patch as opposed to when it's in "proposal" stage.  This was my
>>> first email with a patch for this issue, who should/could I have used for
>>> "signoff"?
>> Signoff is used to indicate that you are OKAY with releasing your
>> patch according to git's license. For more details see the
>> Documentation/SubmittingPatches[1]. To summarize you will have to add
>> this in the end :
>>
>>     Signed-off-by: Alfred Perlstein <alfred@freebsd.org>
>>
>> Though I will still recommend you to go through [1] properly.
> Oops I forgot to put the link.
>
> [1]: https://github.com/git/git/blob/master/Documentation/SubmittingPatches#L239-L307
>
Pranit,

Ah thank you!!!  This clarifies.  I will resend the patch tonight.

-Alfred

^ permalink raw reply	[flat|nested] 11+ messages in thread

* [PATCH] Document the 'svn propset' command.
  2016-06-12 19:15 [PATCH] Document the 'svn propset' command Alfred Perlstein
  2016-06-13  6:59 ` Pranit Bauva
@ 2016-06-15  5:19 ` Alfred Perlstein
  2016-06-15 20:15   ` Eric Wong
  1 sibling, 1 reply; 11+ messages in thread
From: Alfred Perlstein @ 2016-06-15  5:19 UTC (permalink / raw)
  To: gitster; +Cc: git, Eric Wong, Joseph Pecoraro, David Fraser, Pranit Bauva

Add example usage to the git-svn documentation.

Reported-by: Joseph Pecoraro <pecoraro@apple.com>
Signed-off-by: Alfred Perlstein <alfred@freebsd.org> 
---

Junio, Pranit, + 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

^ permalink raw reply related	[flat|nested] 11+ messages in thread

* Re: [PATCH] Document the 'svn propset' command.
  2016-06-15  5:19 ` Alfred Perlstein
@ 2016-06-15 20:15   ` Eric Wong
  2016-06-15 20:21     ` Junio C Hamano
  0 siblings, 1 reply; 11+ messages in thread
From: Eric Wong @ 2016-06-15 20:15 UTC (permalink / raw)
  To: Alfred Perlstein, Junio C Hamano
  Cc: git, Joseph Pecoraro, David Fraser, Pranit Bauva

Alfred Perlstein <alfred@freebsd.org> wrote:
> Add example usage to the git-svn documentation.
> 
> Reported-by: Joseph Pecoraro <pecoraro@apple.com>
> Signed-off-by: Alfred Perlstein <alfred@freebsd.org> 
> ---
> 
> Junio, Pranit, + 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.

Thanks Alfred,

I've removed the '.' from the commit subject, signed-off,
and pushed to my repo for Junio:

The following changes since commit 05219a1276341e72d8082d76b7f5ed394b7437a4:

  Git 2.9 (2016-06-13 10:42:13 -0700)

are available in the git repository at:

  git://bogomips.org/git-svn.git svn-propset-doc

for you to fetch changes up to f3961b2eba8ba6aa2fddc827ddf5c26b41391872:

  Document the 'svn propset' command (2016-06-15 20:11:22 +0000)

----------------------------------------------------------------
Alfred Perlstein (1):
      Document the 'svn propset' command

 Documentation/git-svn.txt | 14 ++++++++++++++
 1 file changed, 14 insertions(+)

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PATCH] Document the 'svn propset' command.
  2016-06-15 20:15   ` Eric Wong
@ 2016-06-15 20:21     ` Junio C Hamano
  2016-06-15 20:24       ` Alfred Perlstein
  0 siblings, 1 reply; 11+ messages in thread
From: Junio C Hamano @ 2016-06-15 20:21 UTC (permalink / raw)
  To: Eric Wong
  Cc: Alfred Perlstein, git, Joseph Pecoraro, David Fraser,
	Pranit Bauva

Eric Wong <e@80x24.org> writes:

> Thanks Alfred,
>
> I've removed the '.' from the commit subject, signed-off,
> and pushed to my repo for Junio:
>
> The following changes since commit 05219a1276341e72d8082d76b7f5ed394b7437a4:
>
>   Git 2.9 (2016-06-13 10:42:13 -0700)
>
> are available in the git repository at:
>
>   git://bogomips.org/git-svn.git svn-propset-doc
>
> for you to fetch changes up to f3961b2eba8ba6aa2fddc827ddf5c26b41391872:
>
>   Document the 'svn propset' command (2016-06-15 20:11:22 +0000)

I actually queued it directly on top of v2.3.0-rc0~32^2 (git-svn:
support for git-svn propset, 2014-12-07) so that it could go to
older maintenance tracks.

I will pick up your Reviewed-by: and redo it.  Thanks.

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PATCH] Document the 'svn propset' command.
  2016-06-15 20:21     ` Junio C Hamano
@ 2016-06-15 20:24       ` Alfred Perlstein
  2016-06-15 20:32         ` Joseph Pecoraro
  0 siblings, 1 reply; 11+ messages in thread
From: Alfred Perlstein @ 2016-06-15 20:24 UTC (permalink / raw)
  To: Junio C Hamano
  Cc: Eric Wong, git, Joseph Pecoraro, David Fraser, Pranit Bauva



> On Jun 15, 2016, at 1:21 PM, Junio C Hamano <gitster@pobox.com> wrote:
> 
> Eric Wong <e@80x24.org> writes:
> 
>> Thanks Alfred,
>> 
>> I've removed the '.' from the commit subject, signed-off,
>> and pushed to my repo for Junio:
>> 
>> The following changes since commit 05219a1276341e72d8082d76b7f5ed394b7437a4:
>> 
>>  Git 2.9 (2016-06-13 10:42:13 -0700)
>> 
>> are available in the git repository at:
>> 
>>  git://bogomips.org/git-svn.git svn-propset-doc
>> 
>> for you to fetch changes up to f3961b2eba8ba6aa2fddc827ddf5c26b41391872:
>> 
>>  Document the 'svn propset' command (2016-06-15 20:11:22 +0000)
> 
> I actually queued it directly on top of v2.3.0-rc0~32^2 (git-svn:
> support for git-svn propset, 2014-12-07) so that it could go to
> older maintenance tracks.
> 
> I will pick up your Reviewed-by: and redo it.  Thanks.
> 

Thank you, always great working with the git project!  

-Alfred 

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PATCH] Document the 'svn propset' command.
  2016-06-15 20:24       ` Alfred Perlstein
@ 2016-06-15 20:32         ` Joseph Pecoraro
  0 siblings, 0 replies; 11+ messages in thread
From: Joseph Pecoraro @ 2016-06-15 20:32 UTC (permalink / raw)
  To: Alfred Perlstein
  Cc: Junio C Hamano, Eric Wong, git, David Fraser, Pranit Bauva

> On Jun 15, 2016, at 1:24 PM, Alfred Perlstein <alfred@freebsd.org> wrote:
> 
>> On Jun 15, 2016, at 1:21 PM, Junio C Hamano <gitster@pobox.com> wrote:
>> 
>> Eric Wong <e@80x24.org> writes:
>> 
>>> Thanks Alfred,
>>> 
>>> I've removed the '.' from the commit subject, signed-off,
>>> and pushed to my repo for Junio:
>>> 
>>> The following changes since commit 05219a1276341e72d8082d76b7f5ed394b7437a4:
>>> 
>>> Git 2.9 (2016-06-13 10:42:13 -0700)
>>> 
>>> are available in the git repository at:
>>> 
>>> git://bogomips.org/git-svn.git svn-propset-doc
>>> 
>>> for you to fetch changes up to f3961b2eba8ba6aa2fddc827ddf5c26b41391872:
>>> 
>>> Document the 'svn propset' command (2016-06-15 20:11:22 +0000)
>> 
>> I actually queued it directly on top of v2.3.0-rc0~32^2 (git-svn:
>> support for git-svn propset, 2014-12-07) so that it could go to
>> older maintenance tracks.
>> 
>> I will pick up your Reviewed-by: and redo it.  Thanks.
>> 
> 
> Thank you, always great working with the git project!  
> 
> -Alfred 

Thanks for addressing this!

- Joe

^ permalink raw reply	[flat|nested] 11+ messages in thread

end of thread, other threads:[~2016-06-15 20:32 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-06-12 19:15 [PATCH] Document the 'svn propset' command Alfred Perlstein
2016-06-13  6:59 ` Pranit Bauva
2016-06-13 12:52   ` Alfred Perlstein
2016-06-13 14:24     ` Pranit Bauva
2016-06-13 14:42       ` Pranit Bauva
2016-06-13 22:09         ` Alfred Perlstein
2016-06-15  5:19 ` Alfred Perlstein
2016-06-15 20:15   ` Eric Wong
2016-06-15 20:21     ` Junio C Hamano
2016-06-15 20:24       ` Alfred Perlstein
2016-06-15 20:32         ` Joseph Pecoraro

Code repositories for project(s) associated with this public inbox

	https://80x24.org/mirrors/git.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).