Muthu Annamalai Venkatachalam has Published 15 Articles

How to upload a project to GitHub from VS Code?

Muthu Annamalai Venkatachalam

Muthu Annamalai Venkatachalam

Updated on 01-Nov-2023 01:31:53

45K+ Views

Introduction When editing code, reviewing changes, and submitting to GitHub, developers often switch between multiple windows. In order for different modules and versions to be operated by different teams, version control is indispensable for every software project. This blog will explain how to publish your Visual Studio Code code to ... Read More

Difference between Git Fetch and Git Pull

Muthu Annamalai Venkatachalam

Muthu Annamalai Venkatachalam

Updated on 04-Jan-2023 11:34:50

1K+ Views

Introduction It is possible to fetch and pull remote repositories via Git Fetch and Git Pull, respectively. Several third-party websites host Git repos, like GitHub and BitBucket, for example. Developers use remote repositories in order to collaborate with one another. When changes are made on the remote location, those changes ... Read More

What is .gitkeep?

Muthu Annamalai Venkatachalam

Muthu Annamalai Venkatachalam

Updated on 04-Jan-2023 10:29:34

3K+ Views

Introduction Git is a development tool that helps teams manage their source code and handle projects efficiently. It's not possible to include blank/empty directories when uploading via GitHub or another hosting service. There's something wrong with that. Git provides a ".gitkeep" file that fixes this problem. It's good for pushing ... Read More

How to install Git On Mac?

Muthu Annamalai Venkatachalam

Muthu Annamalai Venkatachalam

Updated on 04-Jan-2023 10:14:07

312 Views

Introduction With Git, developers can collaborate on projects and track their progress without interfering with each other. This facilitates collaboration within a project and helps prevent confusion or code clashes among team members. An evolving project is tracked and saved as snapshots, effectively keeping a history of its development. It ... Read More

How to Install Git in Vs Code?

Muthu Annamalai Venkatachalam

Muthu Annamalai Venkatachalam

Updated on 04-Jan-2023 10:10:36

5K+ Views

Introduction There's no doubt that Git is one of the most popular version control systems out there. Git always keeps track of your work, and if needed, you can revert to an old version if necessary. Using Git, several people can collaborate on a document simultaneously by merging their changes. ... Read More

How to add an image to your README.md file in Git repository?

Muthu Annamalai Venkatachalam

Muthu Annamalai Venkatachalam

Updated on 04-Jan-2023 09:48:54

2K+ Views

Introduction Git, an open-source distributed version control system, is capable of handling projects of any size, from tiny to very big. Among the most commonly used features of GitHub is version control. It is useful when you are working with more than one developer in a team. This article shows ... Read More

What is the difference between Mercurial and Git

Muthu Annamalai Venkatachalam

Muthu Annamalai Venkatachalam

Updated on 14-Dec-2022 16:02:25

203 Views

Introduction When it comes to getting started, maintaining efficiency and velocity, or improving team performance, Version Control Systems (VCS) can be a fundamental component for DevOps teams. As well as supporting the mechanical actions required by DevOps – tracking changes, documenting changes, merging data, and more – an effective VCS ... Read More

Tips to write a clean commit history in Git

Muthu Annamalai Venkatachalam

Muthu Annamalai Venkatachalam

Updated on 14-Dec-2022 16:01:01

162 Views

Introduction Git is one of the most important tools. Not only does Git keep a history of projects, but it also makes collaboration easy between teams. Although it is such a valuable tool, it is often overlooked or underutilized. Clean Git history tells the story of a project and is ... Read More

What is a Git Repository?

Muthu Annamalai Venkatachalam

Muthu Annamalai Venkatachalam

Updated on 14-Dec-2022 16:00:08

846 Views

Introduction In the field of distributed version control systems (DVCS), Git is the most widely used system for tracking changes over time and collaborating with other developers. Whether you're a team of software developers working on an enterprise project or a single programmer working on your local files, Git is ... Read More

What is GitOps?

Muthu Annamalai Venkatachalam

Muthu Annamalai Venkatachalam

Updated on 14-Dec-2022 15:58:09

206 Views

Introduction The GitOps methodology organizes and maintains the infrastructure for a project. By pushing a change to source control, a git commit triggers an update to cloud infrastructure or applications. In GitOps, changes in Git trigger builds and deployments of infrastructure and applications, so Git is the only source of ... Read More

Advertisements