# Graph & Algorithm project — INSA Toulouse This is an INSA local copy of [Mikael CAPELLE's repository](https://gitea.typename.fr/INSA/be-graphes). ## How to start? 1. Clone this repository: ```bash git clone https://git.etud.insa-toulouse.fr/lebotlan/BE-Graphes.git ``` 2. In the cloned directory, remove the `.git` folder. 3. On your favorite platform, create a new empty repository of yours. - [INSA GitEtud](https://git.etud.insa-toulouse.fr/) - [Gitlab](https://gitlab.com/) - [Bitbucket](https://bitbucket.org/) - [Github](https://github.com/) 4. On your computer or on an INSA computer, clone your own repository ```bash git clone (here-the-https-URL-to-your-own-repository) ``` 5. Your repository is initially empty. Move the BE-Graphes project into it. Keep the .gitignore file. 6. Commit your changes: ```bash git status git add . git status ## Check the added files git commit -m "My initial commit" git push ```