BE/BE-Graphes
2025-03-31 10:47:38 +02:00
..
be-graphes-algos my initial commit 2025-03-31 01:29:11 +02:00
be-graphes-gui my initial commit 2025-03-31 01:29:11 +02:00
be-graphes-model the methods fastest and shortest are done 2025-03-31 10:47:38 +02:00
.gitignore my initial commit 2025-03-31 01:29:11 +02:00
eclipse-java-google-style.xml my initial commit 2025-03-31 01:29:11 +02:00
pom.xml the methods fastest and shortest are done 2025-03-31 10:47:38 +02:00
README.md my initial commit 2025-03-31 01:29:11 +02: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