#git #lock-files #wait #index #running #present #file

app git-wait

A simple wrapper utility around git that waits until index.lock file is no longer present running the command

6 releases (3 breaking)

new 0.4.0 Dec 1, 2024
0.3.2 Nov 30, 2024
0.2.0 Nov 27, 2024
0.1.0 Nov 27, 2024

#130 in Development tools

Download history 421/week @ 2024-11-26

421 downloads per month

MIT license

11KB
207 lines

git-wait

A simple wrapper utility around git that waits until index.lock file is no longer present before forwarding all the args to git and running the command. This is especially useful when there are potentially other git commands running on the same repo.

Installation

  1. Ensure Rust is installed.
  2. Run cargo install git-wait.

Usage

git-wait <git args>

The set-it-and-forget-it approach:

# Put this in your shell config.
alias git=git-wait

Timeout can be set by setting GIT_WAIT_TIMEOUT_MS env var. It is in milliseconds.

# 5-second timeout:
$ GIT_WAIT_TIMEOUT_MS=5000 git-wait status

Example

$ git-wait status
$ git-wait push

When index.lock is present:

$ git-wait status
Waiting on index.lock... done!
<regular git status output>

Dependencies

~0.4–7.5MB
~50K SLoC