# Git Commands **Published by:** [golden](https://paragraph.com/@goldenbit/) **Published on:** 2022-06-26 **URL:** https://paragraph.com/@goldenbit/git-commands ## Content Git is a prevalent version control system ( VCS ) used by most programmers. In this blog, I am going to share some tips with basic commands to make using git easier. To start with git, we need to understand how things work locally on the system while using git.This diagram will help to understand, what actually happens while using git locally. Starting with the working area, the working area is where the files that are not handled by git, it is the place where all the untracked files are kept. Staging area has files that are going to be part of the next commit. The repository contains all the project commits. Using the repository we can have files as it was at some point in time. Git Commands:1. Initializing git in your directoryThe very first step that you need to do is to initialize the repository.2. git configThis command helps you to set the username and user email address to be used with your commits respectively.3. git statusThis command is used to see the state of the working area and staging area.3. git addThis command is used to add files to the staging area. To take all the files that are untracked in the working area to the staging area, we use:to be continue … ## Publication Information - [golden](https://paragraph.com/@goldenbit/): Publication homepage - [All Posts](https://paragraph.com/@goldenbit/): More posts from this publication - [RSS Feed](https://api.paragraph.com/blogs/rss/@goldenbit): Subscribe to updates