Shaare your links…
407 links
Liens · Devenet Home Login RSS feed Tags cloud
12 results for tags git x
  • Astuces Git → https://ohshitgit.com/
    Mon Feb 10 10:10:02 2025 – #permalink
    git
  • How to use different git emails for personal and work repositories on the same machine → https://blog.hao.dev/how-to-use-different-git-emails-for-personal-and-work-repositories-on-the-same-machine
    Option 1 : avoir deux fichiers .gitconfig-work et .gitconfig-perso, et dans le fichier .gitconfig charger le bon fichier selon le répertoire.
    > # ~/.gitconfig
    >
    > [includeIf "gitdir:~/work/"]
    >     path = .gitconfig-work
    > [includeIf "gitdir:~/personal/"]
    >     path = .gitconfig-personal

    Option 2 : modifier dans chaque dépôt l’adresse e-mail Git.
    Wed Jun 1 10:30:30 2022 – #permalink
    git
  • La puissance des workflows git → https://medium.com/@OVHUXLabs/la-puissance-des-workflows-git-12e195cafe44
    Après avoir testé Git Flow, Github Flow, les devops d'OVH nous propose leur solution hybride.
    Fri Mar 24 09:36:26 2017 – #permalink
    git
  • Le workflow chez github et des pistes pour votre entreprise | Kgaut.NET → https://kgaut.net/journal/le-workflow-chez-github-et-des-pistes-pour-votre-entreprise.html
    Thu Oct 6 10:46:17 2016 – #permalink
    git
  • Un modèle de branches Git efficace - Frank Taillandier → http://frank.taillandier.me/2014/12/14/un-modele-de-branches-git-efficace/
    Stratégie de ramification et de la gestion des versions.
    Tue May 24 09:51:24 2016 – #permalink
    git
  • Déployer un site avec git sur un hébergement mutualisé OVH (ou autre) | Darklg Blog → http://darklg.me/2016/03/deployer-un-site-avec-git-sur-un-hebergement-mutualise-ovh-ou-autre/
    Les hébergements d'OVH permettent un accès via SSH !
    Utile pour automatiser les déploiements :)
    Sun Mar 20 21:14:37 2016 – #permalink
    git
  • Sane GitHub Labels → https://medium.com/@dave_lunny/sane-github-labels-c5d2e6004b63
    TLDR; the default GitHub labels kinda suck; use a sane labelling scheme instead; and use git-labelmaker to simplify GitHub label editing.

    ‣ via http://lien.shazen.fr/?1gXn2Q
    Mon Mar 7 11:20:10 2016 – #permalink
    git
  • Git - Le remisage → http://git-scm.com/book/fr/Utilitaires-Git-Le-remisage
    Équivalent au "shelve" de TFS (par Microsoft) : permet de stocker localement ses modifications pour retrouver un dépôt git "propre", et ainsi faire des modifications urgentes, changer de branche, bref faire autre chose, puis une fois ces choses terminées, retrouver l'état initial.
    It's awesome!
    Fri Apr 11 15:33:49 2014 – #permalink
    astuce git
  • Syncing a fork → https://help.github.com/articles/syncing-a-fork
    Comment mettre à jour la branche upstream d'un fork :
    1. Vérifier que les branches d'origine sont bien présentes : git remote -v
    2. Sinon on les ajoute : git remote add upstream https://github.com/otheruser/repo.git
    3. On met à jour les branches d'origine : git fetch upstream
    4. On sélectionne la branche locale : git checkout master
    5. On peut merger : git merge upstream/master
    Sun Sep 8 19:38:20 2013 – #permalink
    développement git mémo ressource
  • Gestion sémantique de version → http://semver.org/lang/fr/
    Comment gérer ses numéros de version.
    Tue Sep 3 18:14:05 2013 – #permalink
    développement git ressource
  • How to Create a New and Empty Branch in Git → http://bitflop.com/document/116
    Pour créer une branche vide sous Git : git checkout --orphan MYBRANCH, puis on enlève les fichiers : git rm -fr ./
    Thu Aug 15 16:49:32 2013 – #permalink
    développement git
  • lolcommits (git + webcam = lol) → https://github.com/mroth/lolcommits
    Petit soft qui prend une image webcam à chaque commit.
    L'idée est bien intéressante :)
    Wed Aug 14 09:16:54 2013 – #permalink
    geek git
Shaarli by sebsauvage
Shaarli-Theme by Nicolas based on idleman theme