From: Jeroen van der Ham <hidden> Date: 2016-06-15 22:55:12
Hi,
It seems I hit a deprecated help message:
% git pull
There is no tracking information for the current branch.
Please specify which branch you want to merge with.
See git-pull(1) for details
git pull <remote> <branch>
If you wish to set tracking information for this branch you can do so with:
git branch --set-upstream nsiv2 origin/<branch>
% git branch --set-upstream nsiv2 origin/nsiv2
The --set-upstream flag is deprecated and will be removed. Consider using --track or --set-upstream-to
Branch nsiv2 set up to track remote branch nsiv2 from origin.
Jeroen.
From: Michael J Gruber <hidden> Date: 2016-06-15 22:55:12
In case of a missing upstream, the git-parse-remote script suggests:
If you wish to set tracking information for this branch you can do so
with:
git branch --set-upstream nsiv2 origin/<branch>
But --set-upstream is deprectated. Change the suggestion to:
git branch --set-upstream-to=origin/<branch> nsiv2
Reported-by: Jeroen van der Ham <redacted>
---
Yes, I'm in low hanging fruits mood.
Signed-off-by: Michael J Gruber <redacted>
---
git-parse-remote.sh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
@@ -80,7 +80,7 @@ See git-${cmd}(1) for details Ifyouwishtosettrackinginformationforthisbranchyoucandosowith:-gitbranch--set-upstream${branch_name#refs/heads/}$remote/<branch>+gitbranch--set-upstream-to=$remote/<branch>${branch_name#refs/heads/}"fiexit1
From: Michael J Gruber <hidden> Date: 2016-06-15 22:55:12
Junio C Hamano venit, vidit, dixit 06.11.2012 15:45:
Michael J Gruber [off-list ref] wrote:
quoted
Yes, I'm in low hanging fruits mood.
Signed-off-by: Michael J Gruber <redacted>
It is called tying loose ends, and is very important. Very much appreciated.
;)
By the way: The gotcha with the signed-off-by after the note is due to
my old format-patch-notes being tripped up by the recent restructuring;
your version in next get's it right. I've dumped my old branch, and I
hope the maintainer in chief will shuffle around the s-o-b where it belongs.
Michael
From: Jeff King <hidden> Date: 2016-06-15 22:55:12
On Wed, Nov 07, 2012 at 09:22:38AM +0100, Michael J Gruber wrote:
Junio C Hamano venit, vidit, dixit 06.11.2012 15:45:
quoted
Michael J Gruber [off-list ref] wrote:
quoted
Yes, I'm in low hanging fruits mood.
Signed-off-by: Michael J Gruber <redacted>
It is called tying loose ends, and is very important. Very much appreciated.
;)
By the way: The gotcha with the signed-off-by after the note is due to
my old format-patch-notes being tripped up by the recent restructuring;
your version in next get's it right. I've dumped my old branch, and I
hope the maintainer in chief will shuffle around the s-o-b where it belongs.