зеркало из https://github.com/microsoft/git.git
Let "git commit" take arguments for files to commit.
It does a "git-update-cache" on the arguments, meaning that you can commit files without doing a separate "git-update-cache". This commit was done with git commit git-commit-script for example.
This commit is contained in:
Родитель
0ed3715ffc
Коммит
0795495388
|
@ -4,6 +4,7 @@ if [ ! -d $GIT_DIR ]; then
|
|||
echo Not a git directory 1>&2
|
||||
exit 1
|
||||
fi
|
||||
git-update-cache -q --refresh -- "$@" || exit 1
|
||||
PARENTS="-p HEAD"
|
||||
if [ ! -r $GIT_DIR/HEAD ]; then
|
||||
if [ -z "$(git-ls-files)" ]; then
|
||||
|
|
Загрузка…
Ссылка в новой задаче