893 links
  • Links Lounge
  • Home
  • Login
  • RSS Feed
  • Tag cloud
  • Picture wall
  • Daily
Links per page: 20 50 100
page 1 / 1
36 results tagged Git x
  • 5 ways GitLab pipeline logic solves engineering problems
    Fri Apr 10 13:31:31 2026 - permalink -
    - - - https://about.gitlab.com/blog/5-ways-gitlab-pipeline-logic-solves-real-engineering-problems/
    Dev Git
  • Git Lucky : jouer en harmonie grâce à Conventional Commits — 24 jours de web
    Mon Dec 9 10:26:58 2024 - permalink -
    - - - https://www.24joursdeweb.fr/2024/git-lucky-jouer-en-harmonie-grace-a-conventional-commits
    Git
  • Valhalla's Things — How I Keep my Life in Git
    Tue Oct 10 09:09:49 2023 - permalink -
    - - - https://blog.trueelena.org/blog/2023/09/12-how_i_keep_my_life_in_git/index.html
    Git
  • orhun/git-cliff: A highly customizable Changelog Generator that follows Conventional Commit specifications ⛰️
    Tue Oct 10 09:09:22 2023 - permalink -
    - - - https://github.com/orhun/git-cliff
    Changelogs Git
  • Conventional Comments : faire des revues de code avec le smile(y) – 24 jours de web
    Thu Dec 16 09:22:47 2021 - permalink -
    - - - https://www.24joursdeweb.fr/2021/conventional-comments-faire-des-revues-de-code-avec-le-smiley/
    CodeReview Git
  • Git Rebasing: An Elfin Workshop Workflow ◆ 24 ways
    Wed Aug 21 17:28:18 2019 - permalink -
    - - - https://24ways.org/2015/git-rebasing/
    Git
  • How does git merge after cherry-pick work? - Stack Overflow

    En résumé : on peut faire un cherry-pick d'un commit d'une branche dans une autre, puis faire un merge de ces 2 branches et cela devrait fonctionner sans duplication. Sinon, il faudra régler le conflit à l'ancienne.

    Pour éviter aussi la duplication dans l'historique, on peut utiliser "rebase".

    Wed May 30 11:58:49 2018 - permalink -
    - - - https://stackoverflow.com/questions/14486122/how-does-git-merge-after-cherry-pick-work
    cherry-pick Git
  • Git Tips & Tricks | GitLab
    Mon Jan 16 15:42:08 2017 - permalink -
    - - - https://about.gitlab.com/2016/12/08/git-tips-and-tricks/
    Git
  • using gitlab token to clone without authentication - Stack Overflow

    Pour utiliser Gitlab CI :
    http://docs.gitlab.com/ce/ci/variables/README.html
    https://docs.gitlab.com/ce/user/project/new_ci_build_permissions_model.html

    Tue Dec 20 15:47:09 2016 - permalink -
    - - - http://stackoverflow.com/questions/25409700/using-gitlab-token-to-clone-without-authentication
    Git Gitlab
  • How to undo "git commit --amend" done instead of "git commit" - Stack Overflow
    
    git reflog
    git reset HEAD@{index before the amend}
    git commit ... 
    Tue Dec 20 09:50:28 2016 - permalink -
    - - - http://stackoverflow.com/questions/1459150/how-to-undo-git-commit-amend-done-instead-of-git-commit
    Git Reset
  • Oh, shit, git! - via Seb Sauvage

    Something wrong

    git reflog
    # you will see a list of every thing you've done in git, across all branches!
    # each one has an index HEAD@{index}
    # find the one before you broke everything
    git reset HEAD@{index}
    # magic time machine

    I accidentally committed to the wrong branch!

    # undo the last commit, but leave the changes available
    git reset HEAD~ --soft
    git stash
    # move to the correct branch
    git checkout name-of-the-correct-branch
    git stash pop
    git add . # or add individual files
    git commit -m "your message here"
    # now your changes are on the correct branch

    Oui, quelqu'un paie un nom de domaine chaque année pour ça. Merci quand même :-)

    Mon Sep 12 13:45:17 2016 - permalink -
    - - - http://ohshitgit.com/
    CommandLine Git
  • Héberger ses dépôts Git sur son serveur - Jean-Luc Petit
    Wed May 4 15:44:21 2016 - permalink -
    - - - https://webpetit.com/heberger-git-serveur/
    Git Linux OnMyServer SSH
  • Cgit - ArchWiki

    Excellent petit outil pour browser des repo Git via le Web.

    Wed Nov 4 14:59:07 2015 - permalink -
    - - - https://wiki.archlinux.org/index.php/Cgit
    Git OnMyServer
  • Git - Configuration de Git

    Pour partager un repository Git entre Windows et Linux, j'utilise ces configurations dans mon ~/.gitconfig.

    Pour Windows (on ne touche pas aux permissions des fichiers, on transforme les éventuels \r\n en \n à chaque commit mais sans les modifier dans notre workspace)
    git config --global core.filemode false
    git config --global core.autocrlf true

    Pour Linux (on commit aussi les permissions des fichiers, et on transforme les éventuels \r\n en \n dans notre workspace)
    git config --global core.filemode true
    git config --global core.autocrlf input

    Et je vérifie que ces paramètres ne sont pas présents dans les .git/config de chacun de mes projets.

    Wed Mar 4 10:08:46 2015 - permalink -
    - - - http://git-scm.com/book/fr/v1/Personnalisation-de-Git-Configuration-de-Git
    Git Linux Windows
  • Remove sensitive data - User Documentation

    A utiliser avec parcimonie, mais c'est bien pratique.

    Wed Jan 21 12:32:50 2015 - permalink -
    - - - https://help.github.com/articles/remove-sensitive-data/
    Git
  • Préparez-vous à réécrire l’histoire avec Git rebase | Excilys Labs
    Mon Dec 15 10:29:16 2014 - permalink -
    - - - http://labs.excilys.com/2012/02/28/preparez-vous-a-reecrire-lhistoire-avec-git-rebase/
    Git
  • Bien utiliser Git merge et rebase • Git Attitude : formations Git qualitatives et sympathiques
    • Quand je fusionne une branche…
      Si elle est purement locale et temporaire, je m’assure qu’elle n’apparaît pas dans le graphe final de l’historique en faisant un fast-forward merge, ce qui peut nécessiter un rebase au préalable.
      Si elle a une sémantique claire et documentée, je m’assure qu’elle apparaîtra clairement dans le graphe de l’historique, du début à la fin, en garantissant un true merge.
    • Quand je m’apprête à pusher mon travail local, je nettoie mon historique local d’abord pour partager un historique propre, au cordeau.
    • Quand je me vois refuser le push parce qu’un travail complémentaire a été pushé entre-temps, je rebase sur la branche distante à jour pour éviter de polluer le graphe par des tas de micro-merges malvenus.

    Y a plus qu'à !

    Fri May 16 12:44:12 2014 - permalink -
    - - - http://www.git-attitude.fr/2014/05/04/bien-utiliser-git-merge-et-rebase/
    Git
  • Configuration de Git 30 minutes par jour

    Ma configuration de Git.

    Tue Apr 22 14:48:34 2014 - permalink -
    - - - http://30minparjour.la-bnbox.fr/2014/configuration-git
    30minparjour Git
  • Git alias pour être plus productif – Exemples astuces git alias – piouPiouM's dev

    Pas mal du tout ces alias Git !

    Tue Apr 22 14:16:03 2014 - permalink -
    - - - http://pioupioum.fr/developpement/git-alias-productivite.html
    alias Git
  • Métier de l'opensource - Linux - Symfony2

    Très bonne ressource : Linux, Symfony2, SVN, Git, ...
    via nicosombs

    Thu Mar 6 10:10:36 2014 - permalink -
    - - - http://www.guidella.com/General/liste.html
    Git Linux Symfony2
  • Git Cheatsheet • NDP Software - nicosomb's favs

    Eheh, génial !
    (via http://bookmarks.cdetc.fr/?FLNPLQ)

    Thu Jan 16 10:29:05 2014 - permalink -
    - - - http://ndpsoftware.com/git-cheatsheet.html
    CheatSheet Git
  • How to: Delete a remote Git tag - Nathan Hoad

    Comment supprimer un tag dans Git :
    git tag -d myTag

    Comment supprimer un tag remote dans Git (i.e. qui a été pushé sur un repository remote. Dans la plupart des cas il n'y en a qu'un seul nommé "origin") :
    git push origin :refs/tags/myTag

    Pour mémoire, pour pusher un tag sur le remote :
    git push origin myTag

    Ouf !

    Mon Jan 6 09:39:35 2014 - permalink -
    - - - http://nathanhoad.net/how-to-delete-a-remote-git-tag
    CommandLine Git
  • Importer un package Github forké avec Composer

    Bien pratique ;-)

    Fri Oct 25 17:11:53 2013 - permalink -
    - - - http://getcomposer.org/doc/05-repositories.md#vcs
    Composer Git Github PHP
  • Git - Étiquetage

    Le livre Git (en français comme en anglais) est toujours aussi chouette. Aujourd'hui c'est une bonne explication sur les tags. Pour plus d'info : git help tag.
    (via http://sebsauvage.net/links/?o0AQ0w)

    Wed Oct 23 10:50:20 2013 - permalink -
    - - - http://git-scm.com/book/fr/Les-bases-de-Git-%C3%89tiquetage
    Git Tag
  • Tag Git - Tranches de code

    Depuis que je suis obligé de jouer avec les repository "remote" avec Git (puisqu'on je suis sur un projet qui n'a pas encore de repository remote centralisé à la Github, donc on s'échange des des repository "bare" par email), je maîtrise bien mieux Git ! Et je comprends beaucoup mieux ce que signifie réellement un pull/push, même un commit et les 3 états possibles des fichiers locaux. C'est incroyable de souplesse ce système.

    Mon Jul 29 10:07:24 2013 - permalink -
    - - - http://snippet.la-bnbox.fr/snippetvamp.php?tag=Git
    CommandLine Git Snippet
  • Phil Sturgeon • Testing and Contributing with Composer Packages | Blog

    Un bon use case d'amélioration d'un composant PHP existant et de la manière de pusher la modification (et de l'utiliser). Si ça fonctionne avec PHP/Composer, Git et Github, cela reste applicable à d'autres technologies.

    Thu May 2 09:38:26 2013 - permalink -
    - - - http://philsturgeon.co.uk/blog/2013/05/testing-contributing-composer-packages
    Composer Git PHP
  • Cygwin, SSH Agent et un peu de Git 30 minutes par jour

    Du coup j'ai traduit et agrémenté l'article.

    Fri Apr 5 11:52:21 2013 - permalink -
    - - - http://30minparjour.la-bnbox.fr/2013/cygwin-ssh-agent-et-un-peu-de-git
    30minparjour Cygwin Git SSH
  • How to delete a "git commit" ? - Stack Overflow - les liens du Colibri

    Toujours utile. Mais risqué lorsque le commit a déjà été pushé et que l'on travaille à plusieurs. Quand 40 personnes commit quotidiennement, il faut forcer son push à 2h du mat' pour éviter la panique :D

    Thu Apr 4 09:33:10 2013 - permalink -
    - - - http://colibri-libre.org/liens/?Bg6jlA
    Git
  • Pro Git - Téléchargement

    En parlant de Pro Git : ce lien permet de télécharger la version française en PDF, ePub, et autre (version de mars 2012, ça a peut-être changé depuis).
    La version "officielle" ne propose que la version anglaise : http://git-scm.com/book

    Mon Mar 18 10:21:59 2013 - permalink -
    - - - http://djibril.developpez.com/tutoriels/conception/pro-git/
    Download Git Livre
  • Git - Brancher et fusionner : les bases

    Quand EGit d'Eclipse fait défaut, heureusement qu'il y a ce genre de ressources (en anglais c'est ici : http://git-scm.com/book/en/Git-Branching-Basic-Branching-and-Merging) pour éviter de faire des bêtises !

    Mon Mar 18 09:57:53 2013 - permalink -
    - - - http://git-scm.com/book/fr/Les-branches-avec-Git-Brancher-et-fusionner%C2%A0%3A-les-bases
    Git Tutoriel
  • Git pour les (futurs) barbus | UNIX Garden

    A lire...

    Thu Mar 14 13:02:23 2013 - permalink -
    - - - http://www.unixgarden.com/index.php/gnu-linux-magazine/git-pour-les-futurs-barbus
    Git
  • How to use Git submodules | Jon Cairns
    Mon Nov 26 15:16:30 2012 - permalink -
    - - - http://joncairns.com/2011/10/how-to-use-git-submodules/
    Git
  • Git on the Server - Setting Up the Server
    Thu Sep 20 14:09:36 2012 - permalink -
    - - - http://git-scm.com/book/en/Git-on-the-Server-Setting-Up-the-Server
    Git
  • Using a 1and1 git repository | ForwardThinkingDesign.com
    Thu Sep 20 14:09:02 2012 - permalink -
    - - - http://www.forwardthinkingdesign.com/blog/using-1and1-git-repository
    1&1 Git
  • Setting up Git for multiple developers - shapeshed

    Ok, I will do that ;-)

    Thu Sep 20 11:39:51 2012 - permalink -
    - - - http://shapeshed.com/setting_up_git_for_multiple_developers/
    Git OnMyServer User Web
  • Handling and Avoiding Conflicts in Git - weblog.masukomi.org
    Tue Aug 21 10:04:20 2012 - permalink -
    - - - http://weblog.masukomi.org/2008/07/12/handling-and-avoiding-conflicts-in-git
    Conflict Git
Links per page: 20 50 100
page 1 / 1
Shaarli - The personal, minimalist, super-fast, no-database delicious clone by the Shaarli community - Help/documentation