DEV Community

Vasudevan Tamilarasan
Vasudevan Tamilarasan

Posted on

3

Git Architecture & Installation

Payilagam Day - 04 - 14-Feb-2024

Topic: Git Architecutre & Installation

GIT Architecture:

=================   ============   ==========   ===========
working directory | staging area | local repo | remote repo
=================   ============   ==========   =========== 

              git add -----> git commit ---> git push 
Enter fullscreen mode Exit fullscreen mode

step 1: we need to add the files to the staging area.
step 2: then move it to the staging area.
step 3: after moving, commit the modification using git commit -m "commit message".
step 4: finnaly push it to the remote repository, hence the developers can access the code base easily with access.

Thereafter, I have installed GIT software on my Linux Mint via terminal using sudo apt install git .

After successfully installed git, i created an account in gitlab for my git learnings.

Then i create a group and an blank project inside the group.

I cloned the remote repo to my local machine using git clone .

Then i am able to see my files in local machine that i had created in my gitlab remote repo.

Sentry blog image

How I fixed 20 seconds of lag for every user in just 20 minutes.

Our AI agent was running 10-20 seconds slower than it should, impacting both our own developers and our early adopters. See how I used Sentry Profiling to fix it in record time.

Read more

Top comments (0)

Cloudinary image

Video API: manage, encode, and optimize for any device, channel or network condition. Deliver branded video experiences in minutes and get deep engagement insights.

Learn more

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay