Git is a version control system that helps you track changes in code or files over time. Here’s a brief overview: Key Concepts: Git helps you: Basic Commands Branching Remote Commands Undo…
Tag: git
Cheat Sheet: Setting up a new Git Repo on a Git Hosting Service
A quick access to Git commands to setup a new repo on a Git Hosting Service. There are several Git Hosting Services such as GitHub, GitLab, Bitbucket, Azure DevOps Repos and more….
How to mirror a Git Repo using Jenkins and access the Git Mirror
A Git mirror is a complete copy of a Git repository. It’s a type of Git repository that is a mirror image of another repository, often used for backup, collaboration, or deployment…
How to scan and remove secrets such as API keys and passwords from your git repo
Gitleaks – Scan for secrets https://github.com/gitleaks/gitleaks BFG Repo Cleaner Tool Download the tool from: https://rtyley.github.io/bfg-repo-cleaner Setup alias for the BFG tool: To remove secrets completely: Replace all secrets listed in a file…
How to setup GitLab on Ubuntu using Docker
GitLab is a web-based platform for version control and collaboration on software development projects. It’s an alternative to GitHub and offers many similar features, plus some additional ones. Here are some key…