readme
This commit is contained in:
parent
828304d955
commit
cf9de26204
1 changed files with 12 additions and 11 deletions
23
README.md
23
README.md
|
@ -4,26 +4,27 @@ This is an INSA local copy of [Mikael CAPELLE's repository](https://gitea.typena
|
|||
|
||||
## 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.
|
||||
1. 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
|
||||
2. On your computer or on an INSA computer, clone your own repository (in the following, we call it MINE)
|
||||
```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:
|
||||
3. Somewhere else on the same computer, clone this repository (we call it THEIRS)
|
||||
```bash
|
||||
git clone https://git.etud.insa-toulouse.fr/lebotlan/BE-Graphes.git
|
||||
```
|
||||
|
||||
4. In this cloned directory (THEIRS), remove the `.git` folder.
|
||||
|
||||
5. Your repository (MINE) is initially empty. Move all the content of the BE-Graphes project (THEIRS) into it. Keep also the .gitignore file.
|
||||
|
||||
6. Commit your changes (MINE):
|
||||
```bash
|
||||
git status
|
||||
git add .
|
||||
|
|
Loading…
Reference in a new issue