845 links
  • Links Lounge
  • Home
  • Login
  • RSS Feed
  • Tag cloud
  • Picture wall
  • Daily
Links per page: 20 50 100
◄Older
page 1 / 2
35 results tagged Git x
  • Git Lucky : jouer en harmonie grâce à Conventional Commits — 24 jours de web
    Mon 09 Dec 2024 10:26:58 AM CET - 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 10 Oct 2023 09:09:49 AM CEST - 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 10 Oct 2023 09:09:22 AM CEST - 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 16 Dec 2021 09:22:47 AM CET - 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 21 Aug 2019 05:28:18 PM CEST - 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 30 May 2018 11:58:49 AM CEST - permalink -
    - - - https://stackoverflow.com/questions/14486122/how-does-git-merge-after-cherry-pick-work
    cherry-pick Git
  • Git Tips & Tricks | GitLab
    Mon 16 Jan 2017 03:42:08 PM CET - 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 20 Dec 2016 03:47:09 PM CET - 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 20 Dec 2016 09:50:28 AM CET - 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 12 Sep 2016 01:45:17 PM CEST - permalink -
    - - - http://ohshitgit.com/
    CommandLine Git
  • Héberger ses dépôts Git sur son serveur - Jean-Luc Petit
    Wed 04 May 2016 03:44:21 PM CEST - 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 04 Nov 2015 02:59:07 PM CET - 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 04 Mar 2015 10:08:46 AM CET - 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 21 Jan 2015 12:32:50 PM CET - permalink -
    - - - https://help.github.com/articles/remove-sensitive-data/
    Git
  • Préparez-vous à réécrire l’histoire avec Git rebase | Excilys Labs
    Mon 15 Dec 2014 10:29:16 AM CET - 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 16 May 2014 12:44:12 PM CEST - 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 22 Apr 2014 02:48:34 PM CEST - 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 22 Apr 2014 02:16:03 PM CEST - 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 06 Mar 2014 10:10:36 AM CET - 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 16 Jan 2014 10:29:05 AM CET - permalink -
    - - - http://ndpsoftware.com/git-cheatsheet.html
    CheatSheet Git
Links per page: 20 50 100
◄Older
page 1 / 2
Shaarli - The personal, minimalist, super-fast, no-database delicious clone by the Shaarli community - Help/documentation