From d990270de787ba2ce0bf2a681610bfefa92f3a6b Mon Sep 17 00:00:00 2001 From: Mark Pitman Date: Wed, 12 Jul 2017 20:07:25 -0700 Subject: [PATCH] Update man page for `create-branch` Add notes section to talk about change in default behavior. --- man/git-create-branch.1 | 3 +++ man/git-create-branch.html | 9 +++++++-- man/git-create-branch.md | 3 +++ 3 files changed, 13 insertions(+), 2 deletions(-) diff --git a/man/git-create-branch.1 b/man/git-create-branch.1 index 086aa17..c20cb95 100644 --- a/man/git-create-branch.1 +++ b/man/git-create-branch.1 @@ -36,6 +36,9 @@ $ git create\-branch \-r upstream integration . .fi . +.SH "NOTES" +As of 4\.4\.0, the default behavior has changed\. \fBgit\-create\-branch\fR will no longer automatically setup a remote tracking branch unless the \fB\-r|\-remote\fR option is specified\. +. .SH "AUTHOR" Written by Jonhnny Weslley <\fIjw@jonhnnyweslley\.net\fR> . diff --git a/man/git-create-branch.html b/man/git-create-branch.html index 9bc0239..8bc8d4b 100644 --- a/man/git-create-branch.html +++ b/man/git-create-branch.html @@ -58,6 +58,7 @@ DESCRIPTION OPTIONS EXAMPLES + NOTES AUTHOR REPORTING BUGS SEE ALSO @@ -101,10 +102,14 @@ $ git create-branch -r integration $ git create-branch -r upstream integration +

NOTES

+ +

As of 4.4.0, the default behavior has changed. git-create-branch will no longer automatically setup a remote tracking branch unless the -r|-remote option is specified.

+

AUTHOR

-

Written by Jonhnny Weslley <jw@jonhnnyweslley.net>
-Modified by Mark Pitman <mark.pitman@gmail.com>

+

Written by Jonhnny Weslley <jw@jonhnnyweslley.net>
+Modified by Mark Pitman <mark.pitman@gmail.com>

REPORTING BUGS

diff --git a/man/git-create-branch.md b/man/git-create-branch.md index 98b15ae..766bc41 100644 --- a/man/git-create-branch.md +++ b/man/git-create-branch.md @@ -27,6 +27,9 @@ git-create-branch(1) -- Create branches $ git create-branch -r upstream integration +## NOTES + +As of 4.4.0, the default behavior has changed. `git-create-branch` will no longer automatically setup a remote tracking branch unless the `-r|-remote` option is specified. ## AUTHOR Written by Jonhnny Weslley <>