Best of Version ControlAugust 2023

  1. 1
    Article
    Avatar of taroTaro·3y

    Git Commands Every Software Engineer Should Know

    Pushing Code Changes Status Git is constantly tracking what’s going on as you make changes locally. You can just do a git diff, but that gives you everything you have changed so far which is kind of a mess. Commit is effectively the only git commit command I ever use.

  2. 2
    Article
    Avatar of awsplainenglishAWS in Plain English·3y

    20 DevOps Interview Questions and Answers with Detailed Explanation

    DevOps is a combination of cultural philosophies, practices, and tools that enhance an organization’s ability to deliver high-velocity applications and services. It enables rapid evolution and improvement of products and helps maintain a high standard of quality. 20 DevOps Interview Questions and Answers with Detailed Explanation.

  3. 3
    Article
    Avatar of cloudnativedailyCloud Native Daily·3y

    Setting up a CI/CD Pipeline Process with Jenkins and Docker in AWS

    Set up a CI/CD Pipeline Process with Jenkins and Docker in AWS in AWS. We will build a simple Flask application, testing it, and deploying it to Docker Hub. The Flask application will be continuously tested while the Docker image is run as part of the pipeline process.

  4. 4
    Article
    Avatar of developercomDeveloper.com·3y

    GitHub versus GitLab

    GitHub and GitLab are popular programmer tools built on the Git framework that help developers collaborate, manage code repositories, streamline workflows, and more. This guide will break down the features, pros, cons, and pricing so you can choose the better fit for your needs.

  5. 5
    Article
    Avatar of communityCommunity Picks·3y

    Web Development Tools with a Focus on Git, Docker and React

    Web Development Tools with a Focus on Git, Docker and React Welcome, fellow developers and tech enthusiasts. This guide is designed to be your trusty companion, offering insights, tips, and practical examples to get you started and increase your skills and productivity. We’ll cover everything from version control systems to containerization tools and JavaScript libraries.

  6. 6
    Article
    Avatar of hackernoonHacker Noon·3y

    Lesser-Known Git Commands to Elevate Your Version Control

    There are a number of lesser-known Git commands that can significantly enhance your mastery of version control. These commands include 'git switch', 'git notes' and 'git bisect' The system is a powerful version control system that can transform your workflows.

  7. 7
    Article
    Avatar of rhdevRed Hat Developer·3y

    A beginner's guide to Git version control

    Red Hat Developer Git is a widely used version control system that allows software development teams to have multiple local copies of the project's source code that are independent of each other. Git uses commits to make changes to files and directories permanent. The principles of the staging environment and the commit are essential to Git.