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
544d1519
Commit
544d1519
authored
Oct 25, 2010
by
Benjamin C Meyer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove whitespace from the end of the line in documentation.
Signed-off-by: Benjamin C Meyer <ben@meyerhome.net>
parent
e4def81a
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
13 additions
and
13 deletions
+13
-13
src/git/common.h
+2
-2
src/git/repository.h
+2
-2
src/git/tag.h
+6
-6
src/git/tree.h
+3
-3
No files found.
src/git/common.h
View file @
544d1519
...
...
@@ -85,9 +85,9 @@
GIT_BEGIN_DECL
/**
/**
* Representation of an existing git repository,
* including all its object contents
* including all its object contents
*/
typedef
struct
git_repository
git_repository
;
...
...
src/git/repository.h
View file @
544d1519
...
...
@@ -21,14 +21,14 @@ GIT_BEGIN_DECL
* of its object database
*
* @param odb an existing object database to back the repo
* @return the new repository handle; NULL on error
* @return the new repository handle; NULL on error
*/
GIT_EXTERN
(
git_repository
*
)
git_repository_alloc
(
git_odb
*
odb
);
/**
* Lookup a reference to one of the objects in the repostory.
*
*
* The generated reference is owned by the repository and
* should not be freed by the user.
* The generated reference should be cast back to the
...
...
src/git/tag.h
View file @
544d1519
...
...
@@ -91,23 +91,23 @@ GIT_EXTERN(const char *) git_tag_message(git_tag *t);
GIT_EXTERN
(
void
)
git_tag_set_target
(
git_tag
*
tag
,
git_object
*
target
);
/**
* Set the name of a tag
* Set the name of a tag
* @param tag The tag to modify
* @param name the new name for the tag
* @param name the new name for the tag
*/
GIT_EXTERN
(
void
)
git_tag_set_name
(
git_tag
*
tag
,
const
char
*
name
);
/**
* Set the tagger of a tag
* Set the tagger of a tag
* @param tag The tag to modify
* @param tagger the new tagger for the tag
* @param tagger the new tagger for the tag
*/
GIT_EXTERN
(
void
)
git_tag_set_tagger
(
git_tag
*
tag
,
const
git_person
*
tagger
);
/**
* Set the message of a tag
* Set the message of a tag
* @param tag The tag to modify
* @param message the new tagger for the tag
* @param message the new tagger for the tag
*/
GIT_EXTERN
(
void
)
git_tag_set_message
(
git_tag
*
tag
,
const
char
*
message
);
...
...
src/git/tree.h
View file @
544d1519
...
...
@@ -146,7 +146,7 @@ GIT_EXTERN(int) git_tree_remove_entry_byname(git_tree *tree, const char *filenam
/**
* Change the SHA1 id of a tree entry.
*
* This will mark the tree that contains the entry as modified;
* This will mark the tree that contains the entry as modified;
* the modified entry will be written back to disk on the next git_object_write()
*
* @param entry Entry object which will be modified
...
...
@@ -157,7 +157,7 @@ GIT_EXTERN(void) git_tree_entry_set_id(git_tree_entry *entry, const git_oid *oid
/**
* Change the filename of a tree entry.
*
* This will mark the tree that contains the entry as modified;
* This will mark the tree that contains the entry as modified;
* the modified entry will be written back to disk on the next git_object_write()
*
* @param entry Entry object which will be modified
...
...
@@ -168,7 +168,7 @@ GIT_EXTERN(void) git_tree_entry_set_name(git_tree_entry *entry, const char *name
/**
* Change the attributes of a tree entry.
*
* This will mark the tree that contains the entry as modified;
* This will mark the tree that contains the entry as modified;
* the modified entry will be written back to disk on the next git_object_write()
*
* @param entry Entry object which will be modified
...
...
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