Ayush Sharmalearngiteasy.hashnode.dev·Jan 10, 2025Don't You Know Git & GitHub?Welcome learners! If the answer to the above question is ‘NO’, then you have come to the right place. After reading this documentation on Git, you will feel confident over git commands, version controlling and everything important related to the matt...1 like·45 readssoftware development
Michael JAYEOLAgetting-on-github.hashnode.dev·Jan 9, 2025🌍 Source Code Repository: The Backbone of Collaborative Development for DevOps Engineers 🔧In today’s fast-paced development landscape, where multiple developers work from various locations, the need for efficient source code management is more important than ever. As DevOps Engineers, leveraging a source code repository is key to ensuring...GitHub
Patel Shailgithubdetail.hashnode.dev·Jan 8, 2025Git/github DetailWhat is VCS? → VCS is a version control system. VCS stands for Version Control System. It is a tool that helps manage and track changes to source code or other files over time. VCS is essential for software development and other projects where mainta...30 readsGitHub
Khushi Trivedikhushitrivedi.hashnode.dev·Jan 7, 2025FeaturedAdvanced GIT - Top 6 Version Control Hacks That Saves You TimeHere we are with another blog featuring Git. My previous write-up on version-control showed a pretty good response- which was a beginner-guide to learn the basics of Git Commands and Controls. Well, this blog is about some Git-Productivity hacks whic...21 likes·238 readscommunity
Ahammed Basha Shaikday-17-of-100-days.hashnode.dev·Jan 1, 2025Deploy and Expose Your First App to AWS EC2Introdction Deploying applications to the cloud is a crucial skill in today’s tech landscape. In this blog, we’ll walk through the process of deploying a simple Node.js application to AWS EC2, By the end, you’ll know how to take your app from local d...Devops
Ahammed Basha Shaikday-16-of-100-days.hashnode.dev·Jan 1, 2025Install and Mastering Git Commands for DevOps EngineersIntroduction As a DevOps engineer, Git is one of the most fundamental tools you’ll use daily. From managing repositories to collaborating with team members, understanding Git commands and workflows is vital for version control and team efficiency. On...AWS
Viraj Vijaykumar Dalaveviraj-devops.hashnode.dev·Dec 30, 2024GIT and GITHUB with complete lifecycle ProjectTo understand what Git and GitHub is we first need to understand what version control system is. What is Version Control System? Version Control System(VCS) solves two problems of a Software Development Lifecycle(SDLC). 1. Sharing 2. Versioning Shar...1 likeGitHub
ZGenius Matondozgeniuscoders.hashnode.dev·Dec 29, 2024Améliorer la Collaboration en Équipe : Comment Git a Transformé le Projet de ZGenius et ses AmisZGenius et ses amis découvrent Git pour travailler en équipe ZGenius et ses amis de la faculté étaient passionnés par la programmation. Un beau jour, ZGenius et ses quatre amis ont eu l'idée de créer une application pour partager les actualités de le...zgenius
Ahammed Basha Shaikday-15-0f-100-days-challenge.hashnode.dev·Dec 25, 2024Mastering Git Branching StrategiesIntroduction In modern software development, Git branching strategies are the backbone of collaborative workflows, enabling teams to develop, test, and deploy features effectively. For DevOps practitioners, mastering Git branching strategies is indis...AWS
Birendra Kumar Chaudharybiren.hashnode.dev·Dec 25, 2024Important git commands everyone needs to know.🎯1. Basic Git Commands: Clone a repository: git clone <GitHub-link> Add a file to staging: git add <file-name> Add all changes to staging: git add . Commit changes with a message: git commit -m "<message>" Push changes to the main branch: gi...Git