4337 links
  • Arnaud's links
  • Home
  • Login
  • RSS Feed
  • ATOM Feed
  • Tag cloud
  • Picture wall
  • Daily
    Type 1 or more characters for results.
    Links per page: 20 50 100
    ◄Older
    page 1 / 6
    106 results tagged git x
    • thumbnail
      Using Private Git Repositories as Terraform Modules - Wahl Network
      7 décembre 2022 à 12:12:04 UTC+1 - permalink - archive.org - https://wahlnetwork.com/2020/08/11/using-private-git-repositories-as-terraform-modules/
      git oauth terraform token
    • Effacer une branche Git à la fois locale et distante

      distante : git push origin --delete [nom_de_la_branche]

      9 août 2021 à 17:40:10 UTC+2 - permalink - archive.org - https://www.journaldunet.fr/web-tech/developpement/1202943-effacer-une-branche-git-a-la-fois-locale-et-distante/
      branch delete git
    • thumbnail
      GitHub - hartwork/git-delete-merged-branches: Command-line tool to delete merged Git branches
      16 août 2020 à 11:10:04 UTC+2 - permalink - archive.org - https://github.com/hartwork/git-delete-merged-branches
      delete git merge
    • Note: "revert" à la main pour revenir a l'état d'un commit dans le passé

      git reset --hard past_commit
      git reset current_commit
      git commit

      9 juin 2020 à 14:04:13 UTC+2 - permalink - archive.org - https://links.infomee.fr/?gfxj6Q
      git revert
    • thumbnail
      ohmyzsh/plugins/git-auto-fetch at master · ohmyzsh/ohmyzsh · GitHub
      8 décembre 2019 à 11:25:00 UTC+1 - permalink - archive.org - https://github.com/ohmyzsh/ohmyzsh/tree/master/plugins/git-auto-fetch
      fetch git zsh
    • thumbnail
      rebase - Squash the first two commits in Git? - Stack Overflow

      git rebase -i --root master

      8 novembre 2019 à 16:06:44 UTC+1 - permalink - archive.org - https://stackoverflow.com/questions/598672/squash-the-first-two-commits-in-git
      git rebase
    • thumbnail
      git - How to amend the last commit to un-add a file? - Super User

      Pour enlever des fichiers d'un commit lors d'un rebase interactif : utiliser le keyword 'edit'
      Ensuite git reset HEAD^ path/to/file/to/revert
      Ensuite git commit --amend
      Ensuite git rebase --continue

      5 novembre 2019 à 15:31:21 UTC+1 * - permalink - archive.org - https://superuser.com/questions/229290/how-to-amend-the-last-commit-to-un-add-a-file
      file git rebase remove
    • Note: rebase interactif en prenant tous les commits de la branche actuelle

      git rebase -i $(git merge-base HEAD master)

      alias grbb='git rebase -i $(git merge-base HEAD master)'

      5 novembre 2019 à 10:15:56 UTC+1 - permalink - archive.org - https://links.infomee.fr/?_MBllQ
      git rebase
    • Git Exercises
      18 octobre 2019 à 15:42:37 UTC+2 - permalink - archive.org - https://gitexercises.fracz.com/
      exercice git learn
    • Note: git commit --fixup

      Pour modifier un commit sur sa branche qui est déjà plusieurs commits derrière HEAD
      1) modifier les fichiers..
      2) git add les fichiers
      3) git commit --fixup $hash_de_l_ancien_commit

      A partir de la un nouveau commit avec le commentaire fixup! est créé
      Ensuite on peut lancer le rebase interactif avec l'option autosquash qui va ordonner tout ça proprement :

      git rebase -i ancien_commit --autosquash

      il y a aussi l'option --squash pour git commit qui va squash dans le rebase interactif au lieu de fixup

      via Martin

      15 octobre 2019 à 13:50:27 UTC+2 - permalink - archive.org - https://links.infomee.fr/?SbkwUw
      fixup git
    • Note: tag git annotated

      git tag -a 1.0.1 -m "1.0.1"
      git push --tags

      23 août 2019 à 14:41:49 UTC+2 - permalink - archive.org - https://links.infomee.fr/?UJKhew
      git tag
    • thumbnail
      arl/tmux-gitbar: Git in your tmux status bar
      10 août 2019 à 13:44:09 UTC+2 - permalink - archive.org - https://github.com/arl/tmux-gitbar#installation
      git tmux
    • Meld

      à tester

      10 août 2019 à 13:42:04 UTC+2 - permalink - archive.org - https://meldmerge.org/
      diff git merge tool
    • thumbnail
      Git Tree Compare - Visual Studio Marketplace
      7 juin 2019 à 17:12:57 UTC+2 - permalink - archive.org - https://marketplace.visualstudio.com/items?itemName=letmaik.git-tree-compare
      git tree
    • thumbnail
      GitHub - pre-commit/pre-commit-hooks: Some out-of-the-box hooks for pre-commit
      6 juin 2019 à 14:43:22 UTC+2 - permalink - archive.org - https://github.com/pre-commit/pre-commit-hooks
      git hook pre-commit
    • thumbnail
      GitHub - antonbabenko/pre-commit-terraform: pre-commit git hooks to take care of Terraform configurations
      6 juin 2019 à 14:42:56 UTC+2 - permalink - archive.org - https://github.com/antonbabenko/pre-commit-terraform
      git hook pre-commit
    • pre-commit

      Git hook scripts are useful for identifying simple issues before submission to code review. We run our hooks on every commit to automatically point out issues in code such as missing semicolons, trailing whitespace, and debug statements. By pointing these issues out before code review, this allows a code reviewer to focus on the architecture of a change while not wasting time with trivial style nitpicks.

      6 juin 2019 à 14:42:08 UTC+2 * - permalink - archive.org - https://pre-commit.com/
      git hook pre-commit
    • splitting_commits
      15 mai 2019 à 17:28:21 UTC+2 - permalink - archive.org - https://git-scm.com/docs/git-rebase#_splitting_commits
      commit git split
    • thumbnail
      GitHub - paulirish/git-open: Type `git open` to open the GitHub page or website for a repository in your browser.
      15 mai 2019 à 17:14:55 UTC+2 - permalink - archive.org - https://github.com/paulirish/git-open
      git github
    • thumbnail
      Git: Find the most recent common ancestor of two branches - Stack Overflow

      git merge-base branch2 branch3
      050dc022f3a65bdc78d97e2b1ac9b595a924c3f2

      git merge-base HEAD origin/master

      4 mars 2019 à 11:49:46 UTC+1 * - permalink - archive.org - https://stackoverflow.com/questions/1549146/git-find-the-most-recent-common-ancestor-of-two-branches
      ancestor branch git
    Links per page: 20 50 100
    ◄Older
    page 1 / 6
    Shaarli - The personal, minimalist, super-fast, database free, bookmarking service by the Shaarli community - Help/documentation