Daniil KorbutforDaniil Korbut's blogrtriangle.hashnode.net·Jan 19, 2023Multiple Python versions on Mac and how to set it up correctlyIntroduction It is possible to have multiple versions of Python installed on a single MacBook. This can be done by using a version manager such as conda or using virtual environments with appropriate Python versions for each of your specific tasks. S...Martina Meyer and 2 others are discussing this3 people are discussing thisDiscuss·265 likes·11.5K readsPython
Sadra YahyapourforSadra Yahyapourimsadra.hashnode.net·Apr 29, 2022Commit Like a ProCommitting changes is one of the common things that many developers do sometimes in case of contribution. You stage your changes and commit them so they will be trackable in the history. But what about conventions? Any difference between a dirty comm...yun zheng and 4 others are discussing this5 people are discussing thisDiscuss·179 likes·29.5K readsDevelop Like a ProGitNice article! IMO it's worth noting most git platforms (github, bitbucket, etc.) support closing issues with specific commit keywords and an issue reference. E.g. fix infinite recursion bug, closes #111 6
Usman SabuwalaforFlyCode Blogjpv-1649076767739.hashnode.net·Nov 11, 2022What are merge conflicts in Git and how to resolve them?So hi again coders 👋 I am Usman! Back again with another article. And this time about resolving merge conflicts in Git! And honestly, no matter how professional you are, you can't escape from merge conflicts, because they are inevitable. It's neithe...partha narra and 5 others are discussing this6 people are discussing thisDiscuss·118 likes·1.6K readsGitGreat Explanation 4
Abhishek KishorforAbhishek's Blogitachiuchiha.hashnode.net·Apr 25, 2023Git References (Master and Head)In Git, a "reference" is a pointer to a commit or branch in the version control system. It allows you to easily navigate and keep track of different versions of your codebase. Git references come in various types, including branch references, tag ref...Discuss·1 likeMastering Git: A Bit More Git
Mrunay UttarwarforMrunaymrunayu.hashnode.net·Apr 24, 2023Master Version Control With These 6 Essential Git CommandsGit has become an indispensable tool for both developers and enterprises. It is a powerful version control system that allows teams to manage changes to their code efficiently. With Git, developers can collaborate on projects, track changes, and easi...Discuss·13 likes·32 readsGitHub
Bonaventure OgetoforHojaLeaks Coding Tutorialsbonaogeto.hashnode.net·Apr 24, 2023The Benefits of Using Version Control Systems Like Git in Software DevelopmentVersion control systems, like Git, are essential tools for any software development team. They allow teams to track changes to their codebase, collaborate on projects, and roll back to previous versions if necessary. In this article, we'll explore th...DiscussGit
Satish SutarforCloud, DevOps and Open Sourcesatishsutar-cloud-and-devops.hashnode.net·Apr 23, 2023Getting Started with GitHubIntroduction GitHub is a web-based platform that uses Git for version control and collaboration. It is a popular platform for hosting and sharing code repositories, making it an essential tool for software developers. In this article, we'll discuss t...Discuss·2 likesDevOps ManifestoDevops
Prakhar SinhaforiCoderprakhar09.hashnode.net·Apr 21, 2023Git three-Stage ArchitectureHello Folks, Welcome To The Third Blog Post From The Series Of Git & GitHub. As Promised I Will Deliver The Comprehensive Series On Git & GitHub, let us Get into the third part without any delay! Prerequisite For this blog : (Follow The Order, As Pro...Discuss·9 likesGit & GitHub - A Comprehensive Blog!Git
Gaurav JanjalforDevOps Blogsgauravjanjal16.hashnode.net·Apr 21, 2023Understanding Git Branching and MergingGit is a powerful tool for managing versions of code, enabling multiple developers to work on the same project simultaneously without interfering with each other's work. Branching and merging are two of the most important features of Git, allowing de...DiscussGit
Prakhar SinhaforiCoderprakhar09.hashnode.net·Apr 20, 2023Git Installation GuideHello Folks, Welcome To The Second Blog From The Series Of Git & GitHub. As Promised I Will Deliver The Comprehensive Series, Lets Get into the second part without any delay! Prerequisite For this blog is the previous two blogs where I've discussed i...DiscussGit & GitHub - A Comprehensive Blog!GitHub
Gaurav JanjalforDevOps Blogsgauravjanjal16.hashnode.net·Apr 20, 2023Getting Started with Git & GitHubGit is a popular and powerful version control system used by developers to manage source code and collaborate on software development projects. Git is a distributed version control system, which means that each user has a complete copy of the reposit...DiscussGit
Abhishek KishorforAbhishek's Blogitachiuchiha.hashnode.net·Apr 20, 2023Removing Files By using "git rm" commandIntroduction The git rm command is used in Git to remove files from the Git repository. It is short for "Git remove." When you use this command, Git removes the specified files from the working directory and the index. Create a Working Directory “pro...Discuss·1 likeMastering Git: A Bit More Git
Gaurav JanjalforDevOps Blogsgauravjanjal16.hashnode.net·Apr 19, 2023Understanding Version Control SystemsIntroduction Version control systems (VCS) are an essential tool for software developers, enabling them to manage changes to their codebase and collaborate on projects effectively. In this beginner's guide, we'll explore what version control systems ...Discuss·32 readsversion control