Purnima thakurpurnimathakur.hashnode.dev路Sep 15, 2024"Mastering GitHub: A Guide for Beginners"GitHub is a web-based hosting service for version control using Git. It allows developers to collaborate on projects, track changes, and manage code repositories. In simple terms, GitHub is where your code lives and where you work together with other...11 likesGitHub
Bahnisikha Dharbahnisikha.hashnode.dev路Apr 5, 2024How to Clone a Git Repo, Publish, Push code to Git with VS codeIf you are a developer then you are well aware of the importance of GitHub and how common it is to publish, commit, push your code to Git and clone a repository to use it locally. Do you know how to do the above using VS code only? If your answer is ...2 likes路80 readsgitpublish
Sumit Kumarsumit01kr.hashnode.dev路Feb 17, 2024Why use version control System.?To understand this Suppose you are a software developer. One day you find a client. The client told you to build an application so what you did was, you created a folder in your system and inside that folder, you created many files. .py .php .java et...version control
janahvi tripathijanahvitripathi.hashnode.dev路Jan 18, 2024Git - GitHub !!Branching in git : Branching in git is a clone or copy of original repository which can be used to worked upon in such a manner that no matter if we add, modify or delete the whole clone repository, the main branch (also called master branch) remain...Git
Irfan S Mominirfans.hashnode.dev路Nov 9, 2023Day-09 Task: Deep Dive in Git & GitHub for DevOps EngineersWhat is Git and why is it important? Git is a version control system that helps you manage and track changes in your code. It's important because it allows collaboration, keeps a history of changes, and helps prevent chaos in coding projects. What...46 reads#90daysofdevops
Sarat Motamarrisaratdevopsengg.hashnode.dev路Oct 25, 2023Day 9 | GIT - Version Controller (aka Source Code Management Tool-SCM) & GitHubGit is a distributed version control system (DVCS) that is widely used in software development to manage and track changes in source code. It was created by Linus Torvalds in 2005 and has become the de facto standard for version control in the softwa...Git
Ronil Rodriguesronilrodrigues.hashnode.dev路Aug 3, 2023Advanced Git & GitHub for DevOps Engineers: Mastering Branching, Reverting, and Merging 馃尣馃敊馃攢Introduction: In the world of DevOps, Git and GitHub play a crucial role in managing version control and collaboration among development teams. This blog will delve into advanced Git concepts, focusing on Git branching, reverting, and merging, with p...Git
AVINASH SARJERAO POWARavinashpowar.hashnode.dev路Aug 2, 2023Day10 of #90daysofdevops | Advance Git & GitHub for DevOps EngineersGit Branching Use a branch to isolate development work without affecting other branches in the repository. Each repository has one default branch and can have multiple other branches. You can merge a branch into another branch using a pull request. B...Git
Michaelslashqa.hashnode.dev路May 31, 2023Creating and Pushing to a Fresh GIT RepositoryThis is a super short post, in case it helps others. Assumptions: GIT is installed and you have configured your SSH keys You understand how GIT works at a basic level Let's say you have a project locally you've been working on that hasn't been ad...GitHub
Joshua Ekerejoshekere.hashnode.dev路May 6, 2023The Difference Between a Git Pull and a Git PushAs a Software Engineering student at ALX, I have always come across Git Pull and Git Push, the latter of which I was more familiar with. While I was working on one of my projects, 0x01.Git, one of the tasks in this project required that I Git Pull. B...10 likes路1.1K readsGit