How to Push to a GitHub Repository in IntelliJ

Image
1. Initialize and Connect the Git Repository # Run in the terminal from the project root git init git remote add origin https://github.com/[user]/[repository].git 2. Configure Git in IntelliJ Select VCS → Enable Version Control Integration . Choose Git and click OK . 3. Connect Your GitHub Account Go to File → Settings (on Windows) or IntelliJ IDEA → Preferences (on macOS). Navigate to Version Control → GitHub . Click Add Account ( + ). Select Log In with Token... and enter your GitHub Personal Access Token. 4. Add and Commit Files Go to VCS → Git → Add (or use the shortcut Ctrl+Alt+A ). Select the files you want to commit. Go to VCS → Commit (or use the shortcut Ctrl+K ). Write a commit message and click Commit . 5. Push Go to VCS → Git → Push (or use the shortcut Ctrl+Shift+K ). Click the Push button. Simpler Method (Using IntelliJ's Built-in Feature) Go to VCS → Share Project on GitHub . Set the repository name to vita-user-...

Use jq to Format JSON in gVim on Windows (Prettify & Minify)

jq is a powerful command-line tool for processing and formatting JSON data.

While there's no official Windows version available anymore, you can still use jq on Windows with an unofficial executable.

Step 1: Download the jq Executable

Visit the following GitHub release page and download the 64-bit version (jq-win64.exe):

Rename from jq-win64.exe to jq.exe and move it to your Vim folder like "C:\Program Files\Vim\vim91"

Step 2: Add to System Path

  1. Open: Control Panel → System → Advanced system settings → Environment Variables
  2. Under “System Variables”, find and select Path, then click “Edit”.
  3. Add the following path: C:\Program Files\Vim\vim91

Step 3: Test jq in Terminal

Open Command Prompt or PowerShell and run:

PS C:\Users\jason> jq --version

You should see:

jq-1.6

Step 4: Use jq Inside Vim/GVim

In Vim/GVim, format the current file using:

:%!jq .

gvim jq prettify
This sends the whole file through jq and replaces it with formatted JSON.

Optional: Format External JSON Files

You can also format any JSON file directly from the command line:

PS C:\Users\jason\Downloads> jq . data.json

This will pretty-print your JSON in the Command Prompt.

Comments

Popular posts from this blog

Resolving Key Exchange Failure When Connecting with SecureCRT to OpenSSH

SecureCRT] How to Back Up and Restore SecureCRT Settings on Windows

How to Set Up Vaultwarden (Bitwarden) on Synology NAS (Best Free Alternative to LastPass)