DEV Community

Sathish Kumar
Sathish Kumar

Posted on

Daily Learning Update: Git:

1.Interface Basics

  • GUI(Graphics User Interface): Using button and menus to navigate.
  • CLI(Command Line Interface): Using text command to interact with systems directly

2.Basic Git Command & Workflow:

  • git add -Adds a specific file to the staging area.
  • git restore --staged Remove a file from the staging area.
  • git commit -m "message" - Saves your staged changes with a descriptive message.
  • Flow:Code -git add -Staging Area -Local Repository -Remote Repository(Gitlab).
  • gitLab-ci.yml -File used to configure CI/CD pipelines in GitLab

Top comments (0)