|
NAMEgit-create-branch - Create branchesSYNOPSISgit-create-branch [-r|--remote [remote_name]] <branchname>DESCRIPTIONCreates local branch named <branchname> and optionally sets up a remote tracking branch.OPTIONS<-r|--remote [remote_name]>Setup a remote tracking branch using remote_name. If remote_name is not supplied, use origin by default. <--from [start_point]> Setup a start point when the branch created. If --from is not supplied, use the current branch by default. <branchname> The name of the branch to create. PREFERENCESYou may save your default preference for the remote option above by using git config with the key git-extras.create-branch.remote whose value will be the default remote when [-r|--remote] is not specified.
The command line option -r|--remote will override this preference. EXAMPLESWith no remote preference set:
With git-extras.create-branch.remote preference set to ´lucinda´:
NOTES
AUTHORWritten by Jonhnny Weslley <jw@jonhnnyweslley.net> Modified by Mark Pitman <mark.pitman@gmail.com>, Brian Murrell <btmurrell@gmail.com>.REPORTING BUGS<https://github.com/tj/git-extras/issues>SEE ALSO<https://github.com/tj/git-extras>
Visit the GSP FreeBSD Man Page Interface. |