No description
Find a file
2025-03-28 10:23:05 +01:00
be-graphes-algos Initial commit 2025-03-28 09:39:04 +01:00
be-graphes-gui Initial commit 2025-03-28 09:39:04 +01:00
be-graphes-model Initial commit 2025-03-28 09:39:04 +01:00
.gitignore Initial commit 2025-03-28 09:39:04 +01:00
eclipse-java-google-style.xml Initial commit 2025-03-28 09:39:04 +01:00
pom.xml Initial commit 2025-03-28 09:39:04 +01:00
README.md Instructions to clone the repository. 2025-03-28 10:23:05 +01:00

Graph & Algorithm project — INSA Toulouse

This is an INSA local copy of Mikael CAPELLE's repository.

How to start?

  1. Clone this repository:

    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.

  1. On your computer or on an INSA computer, clone your own repository

    git clone (here-the-https-URL-to-your-own-repository)
    
  2. Your repository is initially empty. Move the BE-Graphes project into it. Keep the .gitignore file.

  3. Commit your changes:

    git status
    git add .
    git status    ## Check the added files
    git commit -m "My initial commit"
    git push