Açıklama Yok
be-graphes-algos | ||
be-graphes-gui | ||
be-graphes-model | ||
.gitignore | ||
eclipse-java-google-style.xml | ||
pom.xml | ||
README.md |
Graph & Algorithm project — INSA Toulouse
This is an INSA local copy of Mikael CAPELLE's repository.
How to start?
- On your favorite platform, create a new empty repository of yours.
-
On your computer or on an INSA computer, clone your own repository (in the following, we call it MINE)
git clone (here-the-https-URL-to-your-own-repository)
-
Somewhere else on the same computer, clone this repository (we call it THEIRS)
git clone https://git.etud.insa-toulouse.fr/lebotlan/BE-Graphes.git
-
In this cloned directory (THEIRS), remove the
.git
folder. -
Your repository (MINE) is initially empty. Move all the content of the BE-Graphes project (THEIRS) into it. Keep also the .gitignore file.
-
Commit your changes (MINE):
git status git add . git status ## Check the added files git commit -m "My initial commit" git push