Nothing here yet.
Nothing here yet.
Feb 25, 2024 · 3 min read · Day 11 Task: Advance Git & GitHub for DevOps Engineers: Part-2 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...
Join discussion
Feb 23, 2024 · 3 min read · Git 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. ...
Join discussion
Feb 12, 2024 · 3 min read · What is Git and why is it important? Git stands for ' Global Information Tracker' its centralized version control systems. Git can be installed on your remote server and local server, we can maintain our central repository on remote server while othe...
Join discussion
Feb 9, 2024 · 4 min read · What is Git? Git is an version control systems, which allows us to track the changes in files and coordinate works on those files around multiple people. Commonly its being used for software development process to track the changes in releases. What ...
Join discussion