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
    2022年12月7日 GMT+1 下午12:12:04 - 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]

    2021年8月9日 GMT+2 下午5:40:10 - 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
    2020年8月16日 GMT+2 上午11:10:04 - 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

    2020年6月9日 GMT+2 下午2:04:13 - permalink - archive.org - https://links.infomee.fr/?gfxj6Q
    git revert
  • thumbnail
    ohmyzsh/plugins/git-auto-fetch at master · ohmyzsh/ohmyzsh · GitHub
    2019年12月8日 GMT+1 上午11:25:00 - 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

    2019年11月8日 GMT+1 下午4:06:44 - 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

    2019年11月5日 GMT+1 下午3:31:21 * - 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)'

    2019年11月5日 GMT+1 上午10:15:56 - permalink - archive.org - https://links.infomee.fr/?_MBllQ
    git rebase
  • Git Exercises
    2019年10月18日 GMT+2 下午3:42:37 - 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

    2019年10月15日 GMT+2 下午1:50:27 - 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

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

    à tester

    2019年8月10日 GMT+2 下午1:42:04 - permalink - archive.org - https://meldmerge.org/
    diff git merge tool
  • thumbnail
    Git Tree Compare - Visual Studio Marketplace
    2019年6月7日 GMT+2 下午5:12:57 - 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
    2019年6月6日 GMT+2 下午2:43:22 - 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
    2019年6月6日 GMT+2 下午2:42:56 - 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.

    2019年6月6日 GMT+2 下午2:42:08 * - permalink - archive.org - https://pre-commit.com/
    git hook pre-commit
  • splitting_commits
    2019年5月15日 GMT+2 下午5:28:21 - 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.
    2019年5月15日 GMT+2 下午5:14:55 - 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

    2019年3月4日 GMT+1 上午11:49:46 * - 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