Brian Kingsolodev.app·Dec 12, 2024Setting Up Git & GitHub on Ubuntu 24.04 LTS.TL;DR. Setting up Git and GitHub on a Debian-based Linux system involves several steps: updating my system, installing Git, installing and updating the GitHub CLI tool, configuring my identity, generating SSH keys, and pushing my local repositories t...The Ops SeriesGitHubSetup
Ishan Berrygit-and-github-a-quick-start-guide.hashnode.dev·Nov 14, 2024Git and GitHub: A Quick Start GuideIntroduction What is Git? Git is an open-source version control system. It allows developers to track changes, save different versions of their code, and collaborate with others without losing any work. With Git, you can: Track every change made to ...42 reads#GitHubForBeginners
Yusuf Isahyuscode.hashnode.dev·Aug 27, 2024Chapter 4 - GitignoreWhat is Gitignore? Gitignore is a file in Git repositories that tells Git which files or directories to ignore and not track. It's a crucial file for managing your project's repository, ensuring that unnecessary files don't clutter your version contr...GitGit
Abdullah Bin Altafdevopswithabdullah.hashnode.dev·Feb 24, 2024Lecture # 11 - Merge RequestsMerge Requests: A merge request also known as a pull request in some platforms is a request made by a developer to merge their code changes from one branch into another branch within a Git repository. It serves as a way to propose and review changes ...26 readsDevops
sourabh patels0ur48h.hashnode.dev·Jan 29, 2023Discover the Magic of Git Branches: How to Make Your Code Work Like a Wizard!What are git branches Consider git provides you with a line of development, Branches are a separate line of development within the git repository. Each branch has its own changes & modification & these changes do not effect other branches within the ...GitHub