Skip to content

ichoubrahim/MSOTI

 
 

Repository files navigation

MSOTI "Together We Stand"

Cours/TPs/Ressources

structure du projet

.
├── README.md
├── Traitement Images
│   ├── cours
│   │   ├── ch0 TI Initiation à Matlab.ppt.pdf
│   │   ├── ch1 TI.pdf
│   │   └── ch2 TI Filtrage.pdf
│   ├── ressources
│   └── tps
│       ├── TP1
│       │   ├── TP1 Ex3 .pdf
│       │   ├── TP1 sol.md
│       │   └── TP1 TI.pdf
│       └── TP2
│           ├── TP2 sol.md
│           └── TP2 TI.pdf
├── Architecture N Tiers J2EE
│   ├── cours
│   ├── ressources
│   └── tps
├── Gestion de projet
│   ├── cours
│   ├── ressources
│   └── tps
├── Informatique decisionnelle
│   ├── cours
│   ├── ressources
│   └── tps
├── Systemes Repartis
│   ├── cours
│   ├── ressources
│   └── tps
└── Vision par Ordinateur
    ├── cours
    ├── ressources
    └── tps


How to be up to date

  1. sign in to github

  2. head over to the project GitHub repo and click the "Fork" button on the top.

  3. install Git on your machine (or any other git client)

  4. clone your fork repo

git clone https://github.com/<your USERNAME>/MSOTI.git
  1. Add the original repo 'upstream' to list of remotes
git remote add upstream https://github.com/YounessFkhach/MSOTI.git
  1. Whenever you want to update your fork with the latest upstream changes, you'll need to first fetch the upstream repo's branches and latest commits to bring them into your repository, then merge it to your master:
# Fetch from upstream remote
git fetch upstream
# Checkout your master branch and merge upstream
git checkout master
git merge upstream/master

How to contribute

  1. make your changes

  2. to save your changes locally

git commit -a
  1. send saved changes to your fork repo
git pull origin master
  1. finally to add your contribution to the original repo just go to "https://github.com/< Your USERNAME >/MSOTI/pulls" and open a new pull request to save changes to the original repo(https://github.com/YounessFkhach/MSOTI.git)

Tutorials

git tutorial | markdown tutorial

About

Cours/TPs/Ressources

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published