© 2023 Hashnode
#gitlab
Git Flow Git is a popular version control system used by software developers to manage and track changes in their code. In a Git-based project, the development process can be streamlined using a branc…
Gitignore is a file in a Git repository that specifies files or directories that should be ignored and not tracked by Git. This file is crucial in keeping your repository organized, reducing clutter, …
Anda pernah mengalami hal seperti ini? Atau yang seperti ini? Jika anda menggunakan Git, anda tidak perlu melakukan itu semua.. Git (version control system) dapat mencatat perubahan pada file at…
GitHub is one of the most popular platforms for hosting and managing code repositories. To access the code in a repository, users must authenticate to the GitHub server. Password authentication was re…
Github is a popular platform for version control and collaboration in software development. It allows developers to store their code remotely, track changes and collaborate with others. In this blog, …
Motivation Developers usually don’t care about updating their dependencies (especially small packages). And really it makes sense if the lifetime of your project is small enough to keep them without u…
What is git ? Git is an open-source version control system. Now, you might be thinking what the heck this means... but don't worry, I will explain to you every single word that I have written like I am explaining to a 5-year-old.* Git is ju…
The default SSL certificates used by GitLab server install will fail any GitLab Runner registration. This guide shows how to amend the SSL certificates used by GitLab server to allow Runner registration in LAN (Local Area Network). For GitL…
Introduction Every craftsman/woman have a toolbox, today I want to talk about mine as a DevOps, Devsecops, Platform, Whatever the next trendy title will be job. Here are some of the tools that I'll be…
GIT Series: https://makereading.com/series/git Introduction Git's "add" command is used to add changes in your working directory to the staging area. The staging area is like a holding place where you…