git-svn-init: Clarify branch creation commands

Suggested by:	eadler
Reviewed by:	eadler
Approved by:	emaste (mentor)
Differential Revision:	https://reviews.freebsd.org/D16593
This commit is contained in:
Ben Widawsky 2018-08-06 01:08:43 +00:00
parent f38b2297a3
commit 94b92b567c
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=337365

View File

@ -119,11 +119,9 @@ git_checkout()
# Arrange to have 'master' reference 'trunk'
${GIT} checkout trunk
# Delete master
${GIT} branch -D master
# Make master really be trunk
${GIT} checkout -b master trunk
# Make master reference trunk
${GIT} branch --force master trunk
${GIT} checkout master
}
rebase()