4337 links
  • Arnaud's links
  • Home
  • Login
  • RSS Feed
  • ATOM Feed
  • Tag cloud
  • Picture wall
  • Daily
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
    December 7, 2022 at 12:12:04 PM GMT+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]

    August 9, 2021 at 5:40:10 PM GMT+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
    August 16, 2020 at 11:10:04 AM GMT+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

    June 9, 2020 at 2:04:13 PM GMT+2 - permalink - archive.org - https://links.infomee.fr/?gfxj6Q
    git revert
  • thumbnail
    ohmyzsh/plugins/git-auto-fetch at master · ohmyzsh/ohmyzsh · GitHub
    December 8, 2019 at 11:25:00 AM GMT+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

    November 8, 2019 at 4:06:44 PM GMT+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

    November 5, 2019 at 3:31:21 PM GMT+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)'

    November 5, 2019 at 10:15:56 AM GMT+1 - permalink - archive.org - https://links.infomee.fr/?_MBllQ
    git rebase
  • Git Exercises
    October 18, 2019 at 3:42:37 PM GMT+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

    October 15, 2019 at 1:50:27 PM GMT+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

    August 23, 2019 at 2:41:49 PM GMT+2 - permalink - archive.org - https://links.infomee.fr/?UJKhew
    git tag
  • thumbnail
    arl/tmux-gitbar: Git in your tmux status bar
    August 10, 2019 at 1:44:09 PM GMT+2 - permalink - archive.org - https://github.com/arl/tmux-gitbar#installation
    git tmux
  • Meld

    à tester

    August 10, 2019 at 1:42:04 PM GMT+2 - permalink - archive.org - https://meldmerge.org/
    diff git merge tool
  • thumbnail
    Git Tree Compare - Visual Studio Marketplace
    June 7, 2019 at 5:12:57 PM GMT+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
    June 6, 2019 at 2:43:22 PM GMT+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
    June 6, 2019 at 2:42:56 PM GMT+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.

    June 6, 2019 at 2:42:08 PM GMT+2 * - permalink - archive.org - https://pre-commit.com/
    git hook pre-commit
  • splitting_commits
    May 15, 2019 at 5:28:21 PM GMT+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.
    May 15, 2019 at 5:14:55 PM GMT+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

    March 4, 2019 at 11:49:46 AM GMT+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