Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit bebc4f5

Browse filesBrowse files
committed
Use correct mode for executable files
Fixes #430
1 parent 2376bd3 commit bebc4f5
Copy full SHA for bebc4f5

2 files changed

+2-2Lines changed: 2 additions & 2 deletions

File tree

Expand file treeCollapse file tree
Open diff view settings
Filter options
Expand file treeCollapse file tree
Open diff view settings
Collapse file

‎git/index/fun.py‎

Copy file name to clipboardExpand all lines: git/index/fun.py
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ def stat_mode_to_index_mode(mode):
9393
return S_IFLNK
9494
if S_ISDIR(mode) or S_IFMT(mode) == S_IFGITLINK: # submodules
9595
return S_IFGITLINK
96-
return S_IFREG | 0o644 | (mode & 0o100) # blobs with or without executable bit
96+
return S_IFREG | 0o644 | (mode & 0o111) # blobs with or without executable bit
9797

9898

9999
def write_cache(entries, stream, extension_data=None, ShaStreamCls=IndexFileSHA1Writer):
Collapse file

‎git/repo/base.py‎

Copy file name to clipboardExpand all lines: git/repo/base.py
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -628,7 +628,7 @@ def untracked_files(self):
628628
:note:
629629
ignored files will not appear here, i.e. files mentioned in .gitignore
630630
:note:
631-
This property is expensive, as no cache is involved. To process the result, please
631+
This property is expensive, as no cache is involved. To process the result, please
632632
consider caching it yourself."""
633633
return self._get_untracked_files()
634634

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.