Posts from Colombia
Git for Beginners: Zero to Hero 🐙
- 18 June 2023
Git plays a crucial role in the software development industry and should therefore be part of every developer’s toolkit. Both experienced and beginner developers can increase their productivity by leveraging a code versioning system as powerful as git. Unfortunately, introductory materials are often either too shallow, making readers feel like they only scratched the surface, or too long-winded, diving into details which needn’t interest everybody.
Seeing as colleagues and students often ask me about good, self-contained guides, I decided to republish this guide for git beginners as well as those looking for a refresher.
Git Hooks Basics 🪝
- 08 June 2023
Git hooks are scripts which can be executed after an action is performed, the options are: applypatch-msg
, commit-msg
, post-update
, pre-applypatch
, pre-commit
, prepare-commit-msg
, pre-push
, pre-rebase
, update
.
Git Cheatsheet: Commands, Tips and Tricks 📝
- 06 June 2023
This is compilation of useful git commands, tips and tricks I created for myself since I kept forgetting some commands related to configuring, searching and managing git repositories. The format is simple, just a list with short descriptions for some common, and other less common, commands which I often find myself looking up online.