wiki/git.md

63 lines
1.4 KiB
Markdown
Raw Permalink Normal View History

2021-02-18 15:50:37 +00:00
2021-08-31 14:19:12 +00:00
Git
===
2021-02-18 15:50:37 +00:00
2021-08-31 14:19:12 +00:00
For aliases and config, see my [.gitconfig](.gitconfig) (self documented)
2021-02-18 15:52:26 +00:00
2021-08-31 14:19:12 +00:00
To update to new git version
2021-02-18 15:52:26 +00:00
2021-08-31 14:19:12 +00:00
sudo add-apt-repository ppa:git-core/ppa
sudo apt update
sudo install git
2021-02-18 15:52:26 +00:00
2021-08-31 14:19:12 +00:00
Use branches :
- better separation on work in progress
- can use `push --force` and even a deep git functionnality: squash
Use `git --amend`
2021-04-20 07:42:16 +00:00
Miscellaneous
=============
2021-08-31 14:19:12 +00:00
Git workflows
-------------
2021-04-20 07:42:16 +00:00
### Git flow
develop/master
mais redondance voir mirroir entre les deux branches
### Github flow
que master
6 points fondamentaux :
- Tout ce qui est sur master est stable et déployable
- Pour travailler sur quelque-chose, la branche doit avoir un nom significatif. Comme : feature/add-menu…
- Il faut commiter sur cette branche localement et régulièrement pusher sur une branche du même nom sur le serveur
- Une fois le développement terminé, ouvrir une pull request sur master pour recueillir du feedback et des tests.
- Une fois les feux au vert, merger sur master.
2021-08-31 13:41:41 +00:00
- Déployer directement après le merge
2021-04-20 07:42:16 +00:00
### Gitlab flow
Ajoute un branch production (et même release ou encore pre-prod)
2021-08-31 14:19:12 +00:00
Some tips for Gitlab
====================
CI Variables
------------
- [Predefined Variables](https://docs.gitlab.com/ee/ci/variables/predefined_variables.html)
- one can also add CI variables to a group: `Settings` > `CI/CD`, `Variables` section
- to be able to push/pull even outside of the Probayes VPN, use url like:
ssh://git@code.probayes.net:28129/