Bikash Nishankbikash-nishank.hashnode.dev·Sep 8, 2024Fundamentals of Version Control System1. Introduction to Version Control What is Version Control? Version control is a tool that helps keep track of changes made to files over time. Imagine you’re working on a project with multiple versions or edits. Version control allows you to: Track...Discuss·1 likeGit
Abhishek Dandriyalabhishek-dandriyal.hashnode.dev·Jul 20, 2024Apache Tomcat ServerTomcat is an open-source web server and servlet. The Apache Software Foundation has developed it. It is used widely for hosting Java-based applications on the web. It is built on Java technologies and implements the Java Servlet and JavaServer Pages ...Discussapache-tomcat-server
Abhishek Dandriyalabhishek-dandriyal.hashnode.dev·Jul 20, 2024SVN CommandsWhat is Svn SVN stands for Subversion. It is a centralized version control system distributed under an open-source Apache license. SVN allows multiple developers to have the current and recent versions of data, such as source files, in sync. It keeps...DiscussWhat is SVN version control system
Snigdha Chaudharisnigdhachaudhari.hashnode.dev·Jul 16, 2024Mastering Version Control: From Centralized Systems to Distributed Git WorkflowsVersion control systems (VCS) are essential tools for developers, providing mechanisms for sharing and versioning code. This blog will explore the differences between centralized and distributed VCS, key concepts like forking, and practical Git comma...DiscussGitHub
Reagan Mwangideepcore.hashnode.dev·Jul 1, 2024Exploring Git Alternatives: Comprehensive ComparisonVersion control is an essential aspect of modern software development, ensuring that changes to codebases are tracked and managed efficiently. While Git has become the de facto standard for many developers, it's worth exploring other version control ...Discuss·10 likesperforce helix cor
Arinze Kevinarinzekevin.hashnode.dev·Aug 17, 2023A Comprehensive Guide to Version Control Systems: Enhancing Collaboration and EfficiencyIntroduction Welcome to the exciting world of software development, where we use a Version Control System (VCS) to keep track of changes to our project files and folders. In this article, we'll break down what a Version Control System is all about, c...Discuss·7 likesversion control
Md. Kaiyomkaiyom.hashnode.dev·Jun 23, 2023Git scenario cheat sheetMerge git merge new_feature Let's say, we want to copy all the code from new_feature branch into dev branch. In such a situation, first, we have to checkout in dev branch then we can execute the above command. The above command means bringing all...DiscussGit
Sherigabia Pambopambo.hashnode.dev·Apr 1, 2023The Importance of Using a Version ControlVersion control is a system that tracks changes to files over time. It is used to record changes to code, documents, and other files so that you can revert to previous versions if necessary. Version control is important for several reasons. First, it...Discuss·45 readsGit
Melisha Troutblog.melishatrout.com·Jan 29, 2023How to synchronise between SVN and Git.In my last post, I mentioned how one could migrate from SVN to Git. In this post, I will explain how to synchronise any changes between Git and Subversion (SVN) that may have occurred during the migration process. There will always be that one person...Discuss·105 readsmigration
Melisha Troutblog.melishatrout.com·Dec 9, 2022What is the main difference between Git and SVN?Git and SVN are both version control systems, which are tools that help developers manage changes to the source code of their software projects. Both Git and SVN allow developers to track changes to their code, revert to previous versions, and collab...Discuss·27 readssvn