Skip to content

Instantly share code, notes, and snippets.

View ubante's full-sized avatar

John Ubante ubante

View GitHub Profile
@ubante
ubante / pcs-crmsh cheatsheet.md
Created July 6, 2017 22:55 — forked from beekhof/pcs-crmsh cheatsheet.md
Transition guide for common crmsh commands

Display the configuration

crmsh # crm configure show
pcs   # pcs cluster cib

Display the current status

crmsh # crm_mon -1
pcs   # pcs status
@ubante
ubante / gitflow-breakdown.md
Last active March 24, 2024 13:26 — forked from JamesMGreene/gitflow-breakdown.md
A comparison of using `git flow` commands versus raw `git` commands.

Initialize

gitflow git
git flow init git init
git commit --allow-empty -m "Initial commit"
git checkout -b develop master

Connect to the remote repository