-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move code to clean up after a branch change to branch.c
Signed-off-by: Daniel Barkalow <barkalow@iabervon.org>
- Loading branch information
Daniel Barkalow
authored and
Junio C Hamano
committed
Feb 10, 2008
1 parent
94a5728
commit c369e7b
Showing
3 changed files
with
28 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,24 @@ | ||
#ifndef BRANCH_H | ||
#define BRANCH_H | ||
|
||
void create_branch(const char *head, | ||
const char *name, const char *start_name, | ||
/* Functions for acting on the information about branches. */ | ||
|
||
/* | ||
* Creates a new branch, where head is the branch currently checked | ||
* out, name is the new branch name, start_name is the name of the | ||
* existing branch that the new branch should start from, force | ||
* enables overwriting an existing (non-head) branch, reflog creates a | ||
* reflog for the branch, and track causes the new branch to be | ||
* configured to merge the remote branch that start_name is a tracking | ||
* branch for (if any). | ||
*/ | ||
void create_branch(const char *head, const char *name, const char *start_name, | ||
int force, int reflog, int track); | ||
|
||
/* | ||
* Remove information about the state of working on the current | ||
* branch. (E.g., MERGE_HEAD) | ||
*/ | ||
void remove_branch_state(void); | ||
|
||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters