Skip to content

Instantly share code, notes, and snippets.

View maanuanubhav999's full-sized avatar

anubhav_sharma maanuanubhav999

  • sportskeeda
View GitHub Profile
@maanuanubhav999
maanuanubhav999 / java_keytool_cheat_sheet.md
Created April 23, 2024 16:31 — forked from Hakky54/java_keytool_cheat_sheet.md
Keytool Cheat Sheet - Some list of keytool commands for create, check and verify your keys

Keytool CheatSheet 🔐

Some history

This cheat sheet came into life when I started working on a tutorial of setting up one way tls and two way tls, which can be found here: GitHub - Mutual TLS SSL

Creation and importing

Generate a Java keystore and key pair

keytool -genkeypair -keyalg RSA -keysize 2048 -keystore keystore.jks -alias server -validity 3650
@maanuanubhav999
maanuanubhav999 / git_and_github_instructions.md
Created October 31, 2019 02:42 — forked from mindplace/git_and_github_instructions.md
Pushing your first project to github

Make sure git is tracking your project.

  1. Using your terminal/command line, get inside the folder where your project files are kept: cd /path/to/my/codebase.

You cannot do this simply by opening the folder normally, you must do this with the command line/terminal.

Do you need a refresher on using your command line/terminal? I've compiled my favorite resources here.

  1. Check if git is already initialized: git status
@maanuanubhav999
maanuanubhav999 / README.md
Created January 20, 2018 12:27 — forked from hofmannsven/README.md
My simply Raspberry Pi Cheatsheet