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
68240811
Commit
68240811
authored
Nov 16, 2011
by
Vicent Martí
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #484 from brodie/packed-refs-perms
refs: permissions-related fixes/improvements
parents
b2ae96fd
9788e72a
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
3 deletions
+2
-3
src/refs.c
+1
-3
src/refs.h
+1
-0
No files found.
src/refs.c
View file @
68240811
...
...
@@ -16,8 +16,6 @@
#define MAX_NESTING_LEVEL 5
#define GIT_PACKED_REFS_FILE_MODE 0644
enum
{
GIT_PACKREF_HAS_PEEL
=
1
,
GIT_PACKREF_WAS_LOOSE
=
2
...
...
@@ -804,7 +802,7 @@ cleanup:
/* if we've written all the references properly, we can commit
* the packfile to make the changes effective */
if
(
error
==
GIT_SUCCESS
)
{
error
=
git_filebuf_commit
(
&
pack_file
,
GIT_PACKED
_
REFS_FILE_MODE
);
error
=
git_filebuf_commit
(
&
pack_file
,
GIT_PACKEDREFS_FILE_MODE
);
/* when and only when the packfile has been properly written,
* we can go ahead and remove the loose refs */
...
...
src/refs.h
View file @
68240811
...
...
@@ -24,6 +24,7 @@
#define GIT_SYMREF "ref: "
#define GIT_PACKEDREFS_FILE "packed-refs"
#define GIT_PACKEDREFS_HEADER "# pack-refs with: peeled "
#define GIT_PACKEDREFS_FILE_MODE 0666
#define GIT_HEAD_FILE "HEAD"
#define GIT_FETCH_HEAD_FILE "FETCH_HEAD"
...
...
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