DEV Community

Cover image for How to you push code or file(already in git) git to Gitlab (local space)using command?
Arul .A
Arul .A

Posted on

How to you push code or file(already in git) git to Gitlab (local space)using command?

Today we discuss about the code push Git to the local storage, there are usually have few steps. The first step is first you open the terminal your current folder.

And the next step is you type the git clone and next we copy the https code in the git page

and next type the

git init
git add .
git commit -m "any message"
git push
Enter fullscreen mode Exit fullscreen mode

Top comments (0)