DEV Community

Kaviya R
Kaviya R

Posted on

COMMANDS IN GITLAB

Gitlab commands are used to help developers and teams to manage repositories,track project progress and collaborate efficiently.

Commands in Gitlab:

  • gitclone
  • gitadd
  • gitcommit
  • gitpush
  • gitpull
  • gitlog

Gitclone:

       Gitclone is a command that is used to create the copy of  your gitlab repository in your local machine.
Enter fullscreen mode Exit fullscreen mode

Gitadd:

      This command is used to move a file from working area to staging area,preparing them for commit.
Enter fullscreen mode Exit fullscreen mode

Gitcommit:

        This command is used to save the staged changes to the local repository.
Enter fullscreen mode Exit fullscreen mode

Gitpush:

       Gitpush command is used to push the local repository to the remote repo.
Enter fullscreen mode Exit fullscreen mode

Gitpull:

       Gitpull is a command in the gitlab and that is used pull the remote repo to local repository.
Enter fullscreen mode Exit fullscreen mode

Gitlog:

      Gitlog is used to display the commit history of git repo.It help to track the changes and see the modification.
Enter fullscreen mode Exit fullscreen mode

Top comments (0)