Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/frohrlich/garage
Garage website, with front and back-office
https://github.com/frohrlich/garage
Last synced: about 2 months ago
JSON representation
Garage website, with front and back-office
- Host: GitHub
- URL: https://github.com/frohrlich/garage
- Owner: frohrlich
- Created: 2022-10-19T13:56:43.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2022-12-08T18:26:09.000Z (about 2 years ago)
- Last Synced: 2023-03-10T20:53:25.510Z (almost 2 years ago)
- Language: PHP
- Homepage:
- Size: 8.99 MB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Garage
***Prérequis : avoir npm et composer installés.
## Commandes utile
Installer les dépendances :
```
npm install
composer install
```Pour commit sa progression :
```
git add .
git commit -m "Commentaire"
git push
```Pour récupérer les données d'un autre :
```
git pull
```Pour changer de branche :
```
git checkout nomdelabranche
```Pour vérifier sur quelle branche on est / si on est synchronisé avec le repository :
```
git status
```
## Marche à suivre pour ajouter une nouvelle fonctionnalité (cas le plus simple sans conflit) :
D'abord se mettre sur develop et récupérer les derniers commits :
```
git checkout develop
git pull
```
Puis créer sa nouvelle branche :
```
git branch nomdelafonctionnalite
git checkout nomdelafonctionnalite
git push --set-upstream origin nomdelafonctionnalite
```
Ensuite coder dessus !
Ensuite commit et push ses changements. A ce stade demander à quelqu'un de vérifier que tout est ok.
Ensuite merge avec develop (on ne touche pas à main pour le moment) :
```
git checkout develop
git fetch
git pull
git merge nomdelafonctionnalite
git branch -d nomdelafonctionnalite
git push
git push origin --delete nomdelafonctionnalite
```