Skip to content

Commit

Permalink
gitlog.m hang fix #3
Browse files Browse the repository at this point in the history
  • Loading branch information
jonbirge committed Apr 2, 2017
1 parent c7cdc41 commit cc6c7b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gitlog.m
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
% system git command. Useful only in that it lets you check git status
% without having to go to a terminal.

[status, result] = systemwpath('git log --graph --oneline --decorate --all');
[status, result] = systemwpath('git --no-pager log --graph --oneline --decorate --all | head -n 16');
if status == 0
fprintf('git log:\n')
fprintf(result)
Expand Down

0 comments on commit cc6c7b0

Please sign in to comment.