mirror of
https://github.com/tj/git-extras.git
synced 2026-09-10 15:36:21 -04:00
6 lines
131 B
Bash
6 lines
131 B
Bash
#!/bin/sh
|
|
|
|
filename=$1
|
|
test -z $filename && echo "filename required." 1>&2 && exit 1
|
|
git update-index --no-skip-worktree $filename
|