Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

This part of tutorial show you how to setup empty repository, add .gitignore to your repository and setup remote repository. If you have an existing repository, folllow How to setup existing repository tutorial below.

First step is to initialize our Git repository. Dump your project using CleverMaps Shell. Open command line and go to dump of your project. You can use cd \path\to\your\dumpDirectory\projectId. Now use git init command. This will initialize your local repository.

...

You have finished setting up your git repository. You can check you remote repositories with git remote -v.

...

How to setup existing repository
Anchor
setupExistingRepository
setupExistingRepository

If you already have existing repository, you can clone it. Open command line and go to your dump directory eg. cd \path\to\your\dumpDirectory. Now use git clone <repo-url>. It will create new directory in your dump directory.

...