Efficient Workflow for Reviewing Changes in Git before Pulling from Remote Branch

2023-06-20

  • git
  • workflow Category: note todo: add links

TLDR: Quick Git Command Reference

To quickly review changes before pulling, use this sequence of commands:

# 1. Fetch latest changes without merging
git fetch origin

# 2. See what's different
git log HEAD..origin/main …

Continue reading

How to Convert Pandas DataFrame to Markdown Table?

2022-07-05

  • pandas
  • table
  • markdown
  • conversion Category: note

up: MOC_Pandas

Generating an ASCII table from a pandas DataFrame can be accomplished in several ways …


Continue reading