DEV Community

vidhya murali
vidhya murali

Posted on

GIT

GIT

  • Git is a free and open source distributed version control system designed to handle everything from small to very large projects with speed and efficiency.

  • It is used to track changes in code, collaborate with others, and manage software projects efficiently.

Basic Git Workflow
Modify files

  • git add .
  • git commit -m "message"
  • git push ** GitHub**

GitHub is a cloud-based platform used to host Git repositories and collaborate on software projects.

It works together with Git.

What GitHub is Used For

  • Storing code online
  • Collaboration with teams
  • Version control
  • Open-source projects
  • Portfolio for developers
  • CI/CD and deployment

GitLab :

GitLab is a web-based platform used for Git repository hosting, collaboration, DevOps, and CI/CD automation.

It is similar to GitHub but includes more built-in DevOps features.

Features of GitLab

  • Git repository hosting
  • Version control
  • Branch management
  • Merge requests
  • Issue tracking
  • CI/CD pipelines

Top comments (0)