projects
/
git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
Move create_branch into a library file
[git]
/
branch.h
1
#ifndef BRANCH_H
2
#define BRANCH_H
3
4
void create_branch(const char *head,
5
const char *name, const char *start_name,
6
int force, int reflog, int track);
7
8
#endif