DEV Community

Cover image for Git Lab - Login & more
Mark Tony
Mark Tony

Posted on

Git Lab - Login & more

Hilo folks!

Git Lab
This blog is about the Git lab login and its applications. It provides a common forum for the developers to collaborate and do their projects effectively.

Initially, I faced a issue to sign in to the #Gitlab as it required 3-steps of verification.

It includes

  1. E- mail verify
  2. Phone number verify
  3. Credit card verify

If you face the same issue, Try to create a new email and sign to the Gitlab. It actually works!

Terminal Commands:

Additionally, I learnt about the terminal commands that makes the job easier.

1.cd - Change Directory (using this we can move to any folder)

2.ls - List files (Which is used to list the files which are present in the particular folder)

3.mkdir - Make directory (It is used to used a Directory / folder)

4.git --version - it is used to check the version of the git.

5.git init - it is used for creating a new repository.

6.git add - it is used for adding a selected file to our repository.

7.git add . - it is used for adding the entire folder to our repository.

8.git commit -m "commit message" - it is Used to commit the changes with commit message, this commit message is useful for the other developers.

9.git clone - It is used to clone a existing repository.

10.git push - Used to push our updated code.

Top comments (0)