Skip to main content

Command Palette

Search for a command to run...

Git: Basic Commands

Creation and Management of Version

Published
1 min readView as Markdown
A

I’m Abijith K A, a VoIP Developer and Software Engineer at Scud Networks, specializing in FastAPI backend development, Docker, Kubernetes, Ansible, and Nginx. I focus on building optimized VoIP solutions and deploying scalable systems following professional standards.

Make Your First Version

After the Configuration of Git in your local System, Next step is to initialize the git tool in your project that your are going to work.

To do this, ensure you are inside your project's folder. Then, follow these steps to create your first version.

  1. Initialize the Git:
git init
  1. Add all the Files
git add .
  1. Create Your First Version by commit
git commit -m "This is my first Commit"

You have successfully created your first version. With this, you can build many more versions.