Skip to content

Commit

Permalink
Merge pull request #2648 from idbrii/git-nolock
Browse files Browse the repository at this point in the history
Don't lock git repo when checking status
  • Loading branch information
chrisbra committed Jul 19, 2023
2 parents cead8ef + 65e77b9 commit e6bb842
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions autoload/airline/extensions/branch.vim
Expand Up @@ -17,8 +17,8 @@ scriptencoding utf-8
let s:vcs_config = {
\ 'git': {
\ 'exe': 'git',
\ 'cmd': 'git status --porcelain -- ',
\ 'dirty': 'git status -uno --porcelain --ignore-submodules',
\ 'cmd': 'git status --porcelain --no-optional-locks -- ',
\ 'dirty': 'git status -uno --porcelain --no-optional-locks --ignore-submodules',
\ 'untracked_mark': '??',
\ 'exclude': '\.git',
\ 'update_branch': 's:update_git_branch',
Expand Down

0 comments on commit e6bb842

Please sign in to comment.