Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
G
git-repo
Project
Project
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
linux-tools
git-repo
Commits
445d453a
Commit
445d453a
authored
Mar 07, 2014
by
Matthias Putz
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixes info -o
parent
631893d7
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
info.py
subcmds/info.py
+3
-3
No files found.
subcmds/info.py
View file @
445d453a
...
...
@@ -138,7 +138,7 @@ class Info(PagedCommand):
self
.
out
.
nl
()
for
c
in
localCommits
:
split
=
c
.
split
()
split
=
c
.
decode
(
'UTF-8'
)
.
split
()
self
.
sha
(
split
[
0
]
+
" "
)
self
.
text
(
" "
.
join
(
split
[
1
:]))
self
.
out
.
nl
()
...
...
@@ -150,7 +150,7 @@ class Info(PagedCommand):
self
.
out
.
nl
()
for
c
in
originCommits
:
split
=
c
.
split
()
split
=
c
.
decode
(
'UTF-8'
)
.
split
()
self
.
sha
(
split
[
0
]
+
" "
)
self
.
text
(
" "
.
join
(
split
[
1
:]))
self
.
out
.
nl
()
...
...
@@ -190,7 +190,7 @@ class Info(PagedCommand):
self
.
out
.
nl
()
for
commit
in
commits
:
split
=
commit
.
split
()
split
=
commit
.
decode
(
'UTF-8'
)
.
split
()
self
.
text
(
'{0:38}{1} '
.
format
(
''
,
'-'
))
self
.
sha
(
split
[
0
]
+
" "
)
self
.
text
(
" "
.
join
(
split
[
1
:]))
...
...
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