GitLab offers a comprehensive platform for collaborative software development and DevOps practices, enabling teams to streamline their development workflows and deliver high-quality software more efficiently.

Continue Reading...

Assume that, you have committed and pushed a file thelinuxfaq.txt or any directory node_modules to the Git repository and if you want to ignore that file or not required to keep on the remote repository,

Continue Reading...

To delete a branch locally in a Git repository, you can use the "git branch" command with the "-d" option and the name of the branch that you want to delete.

Continue Reading...

To revert a Git repository to a previous commit in two ways, one is Temporarily switch to a different commit and another one is Hard delete unpublished commits.

Continue Reading...

​If you want To undo the most recent local commits in Git, you can use the "git reset" option git command followed by the name of the commit that you want to revert back to.

Continue Reading...

How to analyzing the quality of your codes with SonarCloud, using GitLab-CI runner to check it every time you commit your codes on GitLab.

Continue Reading...

how to install and set up the GitLab server on Ubuntu 20.04 LTS system using the command line. To create a basic pipeline script in gitlab, you have to create in your project a .gitlab-ci.yaml file. These pipelines can have single or multiple stages.

Continue Reading...