Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
git2
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
git2
Commits
824cb2d5
Commit
824cb2d5
authored
Nov 20, 2012
by
Russell Belfer
Committed by
Ben Straub
Nov 27, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Updates to reset.h
parent
3f63cc9e
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
19 additions
and
15 deletions
+19
-15
include/git2/reset.h
+18
-7
include/git2/types.h
+0
-7
src/reset.c
+1
-1
No files found.
include/git2/reset.h
View file @
824cb2d5
...
...
@@ -16,16 +16,26 @@
GIT_BEGIN_DECL
/**
* Kinds of reset operation
*/
typedef
enum
{
GIT_RESET_SOFT
=
1
,
/** Move the head to the given commit */
GIT_RESET_MIXED
=
2
,
/** SOFT plus reset index to the commit */
GIT_RESET_HARD
=
3
,
/** MIXED plus changes in working tree discarded */
}
git_reset_t
;
/**
* Sets the current head to the specified commit oid and optionally
* resets the index and working tree to match.
*
*
When specifying a Soft kind of reset,
the head will be moved to the commit.
*
SOFT reset means
the head will be moved to the commit.
*
*
Specifying a Mixed kind of reset will trigger a Soft reset and the index will
*
be replaced
with the content of the commit tree.
*
MIXED reset will trigger a SOFT reset, plus the index will be replaced
* with the content of the commit tree.
*
* Specifying a Hard kind of reset will trigger a Mixed reset and the working
* directory will be replaced with the content of the index.
* HARD reset will trigger a MIXED reset and the working directory will be
* replaced with the content of the index. (Untracked and ignored files
* will be left alone, however.)
*
* TODO: Implement remaining kinds of resets.
*
...
...
@@ -38,9 +48,10 @@ GIT_BEGIN_DECL
*
* @param reset_type Kind of reset operation to perform.
*
* @return
GIT_SUCCESS or an error code
* @return
0 on success or an error code < 0
*/
GIT_EXTERN
(
int
)
git_reset
(
git_repository
*
repo
,
git_object
*
target
,
git_reset_type
reset_type
);
GIT_EXTERN
(
int
)
git_reset
(
git_repository
*
repo
,
git_object
*
target
,
git_reset_t
reset_type
);
/** @} */
GIT_END_DECL
...
...
include/git2/types.h
View file @
824cb2d5
...
...
@@ -175,13 +175,6 @@ typedef enum {
GIT_BRANCH_REMOTE
=
2
,
}
git_branch_t
;
/** Kinds of reset operation. */
typedef
enum
{
GIT_RESET_SOFT
=
1
,
GIT_RESET_MIXED
=
2
,
GIT_RESET_HARD
=
3
,
}
git_reset_type
;
/** Valid modes for index and tree entries. */
typedef
enum
{
GIT_FILEMODE_NEW
=
0000000
,
...
...
src/reset.c
View file @
824cb2d5
...
...
@@ -63,7 +63,7 @@ cleanup:
int
git_reset
(
git_repository
*
repo
,
git_object
*
target
,
git_reset_t
ype
reset_type
)
git_reset_t
reset_type
)
{
git_object
*
commit
=
NULL
;
git_index
*
index
=
NULL
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment