Skip to main content

6 docs tagged with "basics"

View all tags

Database ACID Properties

A comprehensive guide to database ACID properties (Atomicity, Consistency, Isolation, Durability) for both beginners and experienced engineers.

git add — Staging Changes

`git add` moves changes from your **working tree** into the **index** (also called the staging area). Think of the index as a draft of your next commit — you.

git commit — Recording Changes

`git commit` takes everything in the **index (staging area)** and creates a permanent, immutable snapshot in the repository. Each commit has:

git push — Uploading to a Remote

`git push` uploads your local commits to a remote repository, making them available to other team members. It transfers only the objects (commits, trees.