Initialize a Git project locally

▪ If we have already an existing project locally, we can initialize a git repository with "git init" .Then we can push it to GitLab/GitHub/...

git init # This creates a hidden folder, .git, which contains the plumbing needed for Git to work.

Last updated