When I seal a git command, for example by typing git git checkout myfile(note the optional "git"), I get the following output:
WARNING: You called a Git command named 'git', which does not exist.
Continuing under the assumption that you meant 'init'
in 0.1 seconds automatically...
usage: git init [-q | --quiet] [--bare] [--template=<template-directory>] [--shared[=<permissions>]] [<directory>]
So git assumes that I had in mind init, and gives me just 0.1 seconds to see the error before it moves forward. Not cool git!
How to disable this feature?
source
share