diff options
author | Daniel Barkalow <barkalow@iabervon.org> | 2008-02-07 17:40:08 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2008-02-10 08:16:51 +0100 |
commit | e496c00348140e73bdd202443df52192f6928541 (patch) | |
tree | 4c14c048a7cf56b8c5cc4a1ef5d51eb24cde04c8 /Makefile | |
parent | Build-in merge-recursive (diff) | |
download | git-e496c00348140e73bdd202443df52192f6928541.tar.xz git-e496c00348140e73bdd202443df52192f6928541.zip |
Move create_branch into a library file
You can also create branches, in exactly the same way, with checkout -b.
This introduces branch.{c,h} library files for doing porcelain-level
operations on branches (such as creating them with their appropriate
default configuration).
Signed-off-by: Daniel Barkalow <barkalow@iabervon.org>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -317,7 +317,7 @@ LIB_OBJS = \ alloc.o merge-file.o path-list.o help.o unpack-trees.o $(DIFF_OBJS) \ color.o wt-status.o archive-zip.o archive-tar.o shallow.o utf8.o \ convert.o attr.o decorate.o progress.o mailmap.o symlinks.o remote.o \ - transport.o bundle.o walker.o parse-options.o ws.o archive.o + transport.o bundle.o walker.o parse-options.o ws.o archive.o branch.o BUILTIN_OBJS = \ builtin-add.o \ |