When executing git pull/push operations in the terminal, it keeps prompting for username and password, even though I’ve already entered them before. Here’s how to solve this issue.

Git Prompting for Username and Password

1
Username for 'https://git.xxx.com': Password for 'https://git.xxx.com': 

Solution

  1. Open the terminal and execute git config --global credential.helper store command to store credentials locally.
  2. Execute the git pull/push operation, enter username and password once, and it won’t prompt again for subsequent operations.
Read more »

This year, I updated some software and hardware. There are not many items, but all are practical tools. Let’s take a look.

Hex Key Set

Purchased from JD, price: 45CNY. I previously bought various models of Xiaomi electric screwdrivers, but I still needed hex keys. This time, I got a hex key set that includes multiple sizes, which is very practical. Combined with the Xiaomi electric screwdriver, I’m now prepared for all types of screws.

Solar-Powered Mountain Bike Tail Light

Read more »

In actual development, finding code often involves copying styles or text from the browser and searching in the IDE. Can I directly click any element on the page and jump to open the corresponding code file in the IDE? click-to-component is such a tool.

Effect

Installation

1
npm install click-to-component
Read more »

While using click-to-component recently, I discovered it didn’t support JB IDE integration, so I spent some time implementing support. Here, I’ll mark down JB’s URL Scheme support situation.

JB IDE itself doesn’t provide direct URL Scheme support. After research, I found the following 2 solutions.

JetBrains Toolbox

After installing the toolbox, it provides support for various JB IDEs.

Supported IDE List

Read more »
0%