AKAbhishek KCinkcabhishek.com.np·Aug 10, 2024 · 2 min readCommitting changes to the local git repositoryIn the previous article, we staged the changes we made to the files. Now, we will be committing our code to make the changes permanent and make additional changes on top of them. Committing changes Once we have staged our changes, we can now use git ...00
AKAbhishek KCinkcabhishek.com.np·Feb 3, 2024 · 4 min readStaging changes in gitOnce we have set up our Git and the repository, we can get started with the version control. We can now work on files and directories in the repository, make changes, and commit those changes. Concepts of Staging When we create or edit an existing fi...00
AKAbhishek KCinkcabhishek.com.np·Jan 28, 2024 · 2 min readSetting up a local git repositoryGit is one of the most popular version controlling system out there. It is a free and open source version controlling system. Git has become an integral part of software development. Git is a distributed version controlling system meaning multiple de...00
AKAbhishek KCinkcabhishek.com.np·Jan 25, 2024 · 3 min readInstalling and configuring git in your systemIn this article, we will be looking at how you can install git on your system. After installing git on the system, we can use it to version control the directories. Installing git on a Linux Installing git on a Linux is pretty straightforward. In the...00