Search icon CANCEL
Subscription
0
Cart icon
Your Cart (0 item)
Close icon
You have no products in your basket yet
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Conferences
Free Learning
Arrow right icon

AutoCorrect in Git from Blog Posts - SQLServerCentral

Save for later
  • 1 min read
  • 07 Dec 2020

article-image

I can’t believe autocorrect is available, or that I didn’t know it existed. I should have looked, after all, git is smart enough to guess my intentions. I learned this from Kendra Little, who made a quick video on this. She got it from Andy Carter’s blog.

Let’s say that I type something like git stats in the cmd line. I’ll get a message from git that this isn’t a command, but there is one similar. You can see this below.

autocorrect-in-git-from-blog-posts-sqlservercentral-img-0

However, I can have git actually just run this. If I change the configuration with this code:

git config --global help.autocorrect 20

Now if I run the command, I see this, where git will delay briefly and then run what it things is correct.

autocorrect-in-git-from-blog-posts-sqlservercentral-img-1

Unlock access to the largest independent learning library in Tech for FREE!
Get unlimited access to 7500+ expert-authored eBooks and video courses covering every tech area you can think of.
Renews at R$50/month. Cancel anytime

The delay is controlled by the parameter I passed in. The value in in tenths of a second, so 20 is 2 seconds, 50 is 5 seconds, 2 is 0.2 seconds, etc.  If you set this back to 0, autocorrect is off.

A great trick, and one I’d suggest everyone enable.

The post AutoCorrect in Git appeared first on SQLServerCentral.