This repository contains a collection of custom cheat sheets for quick reference and command recall. It serves as a centralized resource for used commands, organized in a way that makes them easy to access and integrate into your workflow.
New custom commands can be easily added to the cheat sheet collection by following these steps:
- A new Markdown (
.md) or reStructuredText (.rst) file should be created in root directory. - The file should be named descriptively (e.g.,
git_commands.md)
-
Commands can be added within the file, using appropriate formatting. Descriptions, arguments, and examples can be included for each command.
-
Example in Markdown format:
# Git Commands ## Clone a Repository `git clone <repository_url>` - **Description**: Clones a repository from a given URL. - **Example**: `git clone https://github.com/user/repo.git`