Debadrita Ghosh 🇮🇳forDebadrita Ghosh's blogdebadritaghosh.hashnode.net·Jul 24, 2022Introduction to Git & Github.What is Version Control System? Version or Source control system is an application that keeps track of the project and manages changes to code. Why do we need Version Control System? problem statement let's assume we are building an application and...Discuss·35 likes·95 reads#iNeuron #HiteshChaudhary #WebDev #Javascript #LCO #LearnCodeOnline #LCO #css #learncodeonline #cssselectors @hiteshchoudharylco code with hitesh choudhary
Akash R ChandranforAkash R Chandran's blogakashrchandran.hashnode.net·Oct 15, 2022Some less popular git commandsIntroduction Git is pretty much used by every developer nowadays. Personally, even after using it for approximately two years, I continue to discover new git features. So here are some of the commands I discovered, and seems they aren't popular enoug...Discuss·11 likes·117 readsGitHub
vivekforfree a gayanviveksingh.hashnode.net·Feb 18, 2023GitHub all commandsgit init: This command is used to initialize a new Git repository. It creates a new directory with a .git subdirectory that contains all the necessary files for Git to track changes. Example: csharpCopy code$ git init my-project This will create a ...Discuss·11 likes·37 readsGitHub
Sujata KumariforSujata blogsujata.hashnode.net·Apr 23, 2023Git cheatsheetgit init : initialize an empty Git repository git clone <repository_url> :clone an existing Git repository git add . : add all the files/directory files to git git commit -m "message" :commit all the staged files to git git status : show the status o...Discuss·1 like·32 readsGit Commands
Amit ThakurforMagento, React, Python & MLamitshree.hashnode.net·Apr 22, 2023Useful git commandsI've compiled a list of helpful Git commands that I found useful as a beginner. These commands can come in handy while you're learning Git and trying to improve your workflow. Few golden rules while you’re working with git. Always pull from the rem...Discuss·1 like·32 readsWeb DevelopmentGit
Subho DeyforDevOpsculturedevopsculture.hashnode.net·Apr 16, 2023A Step-by-Step Guide to Installing Git and GitHub, and Creating Your First RepositoryInstalling Git on Linux The process of installing Git on Linux varies depending on the distribution you are using. Here are the steps for installing Git on Ubuntu and CentOS: Installing Git on Ubuntu Open Terminal on your Ubuntu machine. Enter the ...Discuss·28 readsGitHub
Madhuri PatilforMadhuri's blogmadhuripdevops.hashnode.net·Apr 15, 2023Day 11: Advance Git & GitHub for DevOps Engineers: Part-2Git Stash: Git stash is a command that allows you to temporarily save changes you have made in your working directory, without committing them. This is useful when you need to switch to a different branch to work on something else, but you don't want...DiscussGitHub
Kiran Kuyateforkirankuyate.Devkiran2157.hashnode.net·Apr 9, 2023simple Git and GitHub 💖I consider you a beginner according to that we will explore this in detail. Let's say you're working on a website and you want to add a new feature to it. Before making any changes to the website's code, you create a new branch in Git. This branch is...DiscussGit Commands
Vrishni Shree V BforVrishni Blogvrishni.hashnode.net·Apr 9, 2023DevOps, Day - 8 & 9What is Git? Git is like a digital filing cabinet for code. It helps keep track of changes made to files and allows multiple people to work on the same project without getting in each other's way. It also allows you to go back in time to previous ...Discuss·1 like·79 readsDevops
Satish D Raj ShettyforSatish D Raj Shetty's blogdevopsgeeks.hashnode.net·Apr 1, 2023Git cheat sheet with some common Git commands:Configuration git config --global user.name "Your Name" - Set your name for Git commits git config --global user.email "youremail@example.com" - Set your email for Git commits Basic Commands git init - Initialize a new Git repository git clone ...Discuss·1 likeGit
Prabhakar Yadavforprabhakar810.hashnode.net·Mar 17, 2023Advance Git & GitHub for DevOps Engineers#90DaysOfDevOps Git Stash: Git stash is a command that allows you to temporarily save changes you have made in your working directory, without committing them. This is useful when you need to switch to a different branch to work on something else, bu...Discuss·29 readsGit
Redge ShepherdforTclTk Scriptstcltkpro.hashnode.net·Mar 11, 2023Add a safe.directory to your repository!I recently added a new 20GB external hard drive to my system. I added a code directory that contains some of my Tcl/Tk files. After creating and attempting to add a file to the repository, I received the following error: F:\Code\TclTk\ReadKey>git add...DiscussGit
Animesh RajforAnimesh Rajitsarraj.hashnode.net·Mar 9, 2023Streamlining Your Github Workflow: How to Publish a Project - For Both Seasoned and Novice Developers!Are you tired of manually uploading your projects to Github? Whether you're a beginner or a seasoned developer, it can be a hassle to constantly navigate through Git commands. In this guide, we'll show you how to effortlessly publish your project to ...DiscussGitHub