4340 links
  • Arnaud's links
  • Home
  • Login
  • RSS Feed
  • ATOM Feed
  • Tag cloud
  • Picture wall
  • Daily
Links per page: 20 50 100
◄Older
page 1 / 2
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
  • thumbnail
    Git aliases I can't live without – Michał Konarski
    2018年11月8日 GMT+1 下午5:39:13 - permalink - archive.org - http://mjk.space/git-aliases-i-cant-live-without/
    git
  • thumbnail
    GitHub - jesseduffield/lazygit: simple terminal UI for git commands
    2018年8月7日 GMT+2 上午9:33:55 - permalink - archive.org - https://github.com/jesseduffield/lazygit
    git
  • thumbnail
    Git Alias to Show Affected Files in Last N Commits (Example)

    Add this to your user's ~/.gitconfig under [alias] to make it globally available:

    lsch = "!f() { git diff --name-status -r "HEAD~$1"; }; f"

    You can invoke this to retrieve all affected files in the last 7 commits like so:

    $ git lsch 7

    2018年5月3日 GMT+2 下午3:11:34 - permalink - archive.org - https://coderwall.com/p/8rtfgg/git-alias-to-show-affected-files-in-last-n-commits
    alias git
  • thumbnail
    Git push rejected after feature branch rebase - Stack Overflow

    Instead of using -f or --force developers should use

    --force-with-lease

    Why? Because it checks the remote branch for changes which is absolutely a good idea. Let's imagine that James and Lisa are working on the same feature branch and Lisa has pushed a commit. James now rebases his local branch and is rejected when trying to push. Of course James thinks this is due to rebase and uses --force and would rewrite all Lisa's changes. If James had used --force-with-lease he would have received a warning that there are commits done by someone else. I don't see why anyone would use --force instead of --force-with-lease when pushing after a rebase.

    2018年1月25日 GMT+1 上午10:50:40 - permalink - archive.org - https://stackoverflow.com/questions/8939977/git-push-rejected-after-feature-branch-rebase
    git push rebase
  • Note: rebase edit commit delete file

    git rebase -i $parent_hash
    git rm file
    git commit --amend
    git rebase --continue

    2017年11月1日 GMT+1 上午10:29:01 - permalink - archive.org - https://links.infomee.fr/?13Rz2Q
    git
  • thumbnail
    How to find/identify large files/commits in Git history? - Stack Overflow

    he Base Script

    This bash "one-liner" displays all blob objects in the repository, sorted from smallest to largest.
    For my sample repo, it ran about 100 times faster than the other ones found here.

    git rev-list --objects --all \
    | git cat-file --batch-check='%(objecttype) %(objectname) %(objectsize) %(rest)' \
    | awk '/^blob/ {print substr($0,6)}' \
    | sort --numeric-sort --key=2 \
    | cut --complement --characters=13-40 \
    | numfmt --field=2 --to=iec-i --suffix=B --padding=7 --round=nearest

    This will generate nice human-readable output like this:

    ...
    0d99bb931299 530KiB path/to/some-image.jpg
    2ba44098e28f 12MiB path/to/hires-image.png
    bd1741ddce0d 63MiB path/to/some-video-1080p.mp4

    Filtering

    To achieve further filtering, insert any of the following lines before the sort line.

    To exclude files that are present in HEAD, insert the following line:

    | grep -vF "$(git ls-tree -r HEAD | awk '{print $3}')" \

    To show only files exceeding given size (e.g. 1 MiB = 220 B), insert the following line:

    | awk '$2 >= 2^20' \

    Output for Computers

    To generate output that's more suitable for further processing by computers, omit the last two lines of the base script. They do all the formatting. This will leave you with something like this:

    ...
    0d99bb93129939b72069df14af0d0dbda7eb6dba 542455 path/to/some-image.jpg
    2ba44098e28f8f66bac5e21210c2774085d2319b 12446815 path/to/hires-image.png
    bd1741ddce0d07b72ccf69ed281e09bf8a2d0b2f 65183843 path/to/some-video-1080p.mp4

    2017年9月27日 GMT+2 上午11:53:28 - permalink - archive.org - https://stackoverflow.com/questions/10622179/how-to-find-identify-large-files-commits-in-git-history
    blob git
  • thumbnail
    List remote Git branches and the last commit date for each branch. Sort by most recent commit date.

    for branch in git branch -r | grep -v HEAD;do echo -e git show --format="%ci %cr" $branch | head -n 1 \t$branch; done | sort -r

    2017年6月27日 GMT+2 下午4:41:12 - permalink - archive.org - https://gist.github.com/jasonrudolph/1810768
    git
  • BFG Repo-Cleaner by rtyley

    To clean old file in repo

    2017年5月24日 GMT+2 下午2:34:10 - permalink - archive.org - https://rtyley.github.io/bfg-repo-cleaner/
    clean git repo
  • thumbnail
    Get the short git version hash - Stack Overflow

    git rev-parse --short HEAD

    2017年3月17日 GMT+1 上午10:54:33 - permalink - archive.org - http://stackoverflow.com/questions/5694389/get-the-short-git-version-hash
    git rev short
  • The git pickaxe

    Or "how to search text in git diff history"
    git log -p -S "string"

    2017年2月23日 GMT+1 上午10:40:45 * - permalink - archive.org - http://www.philandstuff.com/2014/02/09/git-pickaxe.html
    git log pickaxe search
  • Note: git hook to have issue number in commit message

    cat prepare-commit-msg
    NAME=$(git branch | grep '' | sed 's/ //'|cut -d'/' -f2|cut -d'-' -f1,2)
    echo "$NAME $(cat "$1")" > "$1"

    for dir in $(ls); do cp prepare-commit-msg $dir/.git/hooks/prepare-commit-msg; done

    !/bin/sh

    text=" [FIX] ()
    🔄 [MOD] ()
    ✅5 [ADD] ()
    🔀 [TEST] ()
    [DOC] ()"

    echo "$text $(cat "$1")" > "$1"

    2017年2月14日 GMT+1 下午3:51:37 * - permalink - archive.org - https://links.infomee.fr/?GZFLaQ
    git hook
  • thumbnail
    Undoing a git rebase - Stack Overflow

    The easiest way would be to find the head commit of the branch as it was immediately before the rebase started in the reflog...

    git reflog

    and to reset the current branch to it (with the usual caveats about being absolutely sure before reseting with the --hard option).

    Suppose the old commit was HEAD@{5} in the ref log:

    git reset --hard HEAD@{5}

    2017年2月13日 GMT+1 下午12:27:23 - permalink - archive.org - http://stackoverflow.com/questions/134882/undoing-a-git-rebase
    git rebase
  • Git Blame: Fun with --first-parent
    2016年12月29日 GMT+1 下午1:37:32 - permalink - archive.org - https://git-blame.blogspot.ch/2012/03/fun-with-first-parent.html
    first git log parent
  • thumbnail
    File format | Vim Tips Wiki | Fandom powered by Wikia
    2016年12月29日 GMT+1 下午12:10:32 - permalink - archive.org - http://vim.wikia.com/wiki/File_format
    convert CR CRLF file format git LF vim
  • Pull Request Merge Strategies: The Great Debate - Atlassian Developers
    2016年12月22日 GMT+1 上午11:23:06 - permalink - archive.org - https://developer.atlassian.com/blog/2014/12/pull-request-merge-strategies-the-great-debate/
    git workflow
  • Git team workflows: merge or rebase? | Atlassian Git Tutorial

    perso je tends pour le rebase

    2016年12月22日 GMT+1 上午11:22:40 - permalink - archive.org - https://www.atlassian.com/git/articles/git-team-workflows-merge-or-rebase/
    git workflow
  • thumbnail
    Difference between git pull --rebase and git pull --ff-only - Stack Overflow
    What will happen if I use git pull --rebase ?

    git pull --rebase is roughly equivalent to

    git fetch
    git rebase origin/master

    i.e. your remote changes (C) will be applied before the local changes (D), resulting in the following tree

    A -- B -- C -- D

    What will happen if I use git pull --ff-only ?

    It will fail.

    git pull --ff-only corresponds to

    git fetch
    git merge --ff-only origin/master

    --ff-only applies the remote changes only if they can be fast-forwarded. From the man:

    Refuse to merge and exit with a non-zero status unless the current HEAD is already up-to-date or the merge can be resolved as a fast-forward

    Since your local and remote branches have diverged, they cannot be resolved by a fast-forward and git pull --ff-only would fail.

    2016年12月21日 GMT+1 上午8:45:23 - permalink - archive.org - http://stackoverflow.com/questions/25430600/difference-between-git-pull-rebase-and-git-pull-ff-only
    ff git merge
  • GitHub - git-tips/tips: Most commonly used git tips and tricks.
    2016年12月14日 GMT+1 上午8:43:57 - permalink - archive.org - https://github.com/git-tips/tips
    git tip tips
  • Git - how to revert multiple recent commits
    2016年12月14日 GMT+1 上午8:23:26 - permalink - archive.org - http://serebrov.github.io/html/2014-01-04-git-revert-multiple-recent-comments.html
    git
  • Note: inception

    I've edited my .vimrc to add fugitive plugin and commited it by using fugitive

    2016年12月9日 GMT+1 下午2:06:22 - permalink - archive.org - https://links.infomee.fr/?4Ww4qQ
    git vim
  • How to resolve git merge conflicts with Vim - Flaviu Simihaian's Blog - Entrepreneur and Developer

    \o/

    2016年12月9日 GMT+1 上午9:54:02 - permalink - archive.org - http://flaviusim.com/blog/how-to-do-a-git-merge-with-vim/
    git merge vim
  • Note: git memo

    Voir fichier à un commit :
    git show HASH:path/to/file

    Hash du commit initial :
    git rev-list --max-parents=0 HEAD

    Voir liste fichiers modifiés entre 2 commits :
    git diff --name-only SHA1 SHA2
    git log --name-status --oneline HEAD~6..HEAD
    git log --name-status --oneline HEAD~6..HEAD |grep -vP '^\S[^\s]'|sort|uniq

    Voir modif sur un fichier entre 2 commits :
    git diff SHA1 SHA2 main.c

    Trouver l'ancetre commun le plus vieux
    git config --global alias.oldest-ancestor '!bash -c '\''diff -u <(git rev-list --first-parent "${1:-master}") <(git rev-list --first-parent "${2:-HEAD}") | sed -ne "s/^ //p" | head -1'\'' -'
    git oldest-ancestor

    git rebase -i [HASH parent]

    man -7 gitrevisions

    HEAD
    HEAD~1 HEAD^ HEAD^1
    HEAD~2 HEAD^2 HEAD~1^
    HEAD~3

    10:10 V /tmp/git_test [master L|V]
    $ git lola

    • 52f73ef (HEAD -> refs/heads/master) Merge branch 'toto'
      |\
      | * 2f39200 (refs/heads/toto) commit on toto
    • | d581320 Commit on master
      |/
    • eae368a first commit
      10:10 V /tmp/git_test [master L|V]
      $ git log --name-status --oneline eae368a..52f73ef
      52f73ef Merge branch 'toto'
      d581320 Commit on master
      A tata
      2f39200 commit on toto
      A b
    2016年11月28日 GMT+1 下午2:28:55 * - permalink - archive.org - https://links.infomee.fr/?wo2tCA
    git memo
  • git: revision magic like a boss (Example) || Coderwall
    HEAD^ is the revision before the current
    HEAD~2 is the same as HEAD^^ and the revision before HEAD^
    2016年11月24日 GMT+1 下午3:55:17 - permalink - archive.org - https://coderwall.com/p/wjlqvw/git-revision-magic-like-a-boss
    git
  • Note: List all branch (sort by date)

    git branch -a --sort=-committerdate

    2016年11月24日 GMT+1 上午10:59:10 - permalink - archive.org - https://links.infomee.fr/?zqUo2Q
    branch git
  • thumbnail
    How to delete a Git branch both locally and remotely? - Stack Overflow

    git push origin --delete <branch_name>

    2016年11月24日 GMT+1 上午9:12:16 - permalink - archive.org - http://stackoverflow.com/questions/2003505/how-to-delete-a-git-branch-both-locally-and-remotely
    branch delete git remote
  • Fugitive.vim - working with the git index

    je découvre ce plugin vim qui a l'air juste magique pour interagir avec git

    2016年11月16日 GMT+1 下午2:22:37 - permalink - archive.org - http://vimcasts.org/episodes/fugitive-vim-working-with-the-git-index/
    git plugin vim
  • Using plan branches - Atlassian Documentation

    il faut que je me fasse au workflow "Branch updater"

    2016年11月10日 GMT+1 下午4:59:31 - permalink - archive.org - https://confluence.atlassian.com/bamboo/using-plan-branches-289276872.html
    atlassian bamboo git jira stash workflow
  • git - How to revert a merge commit that's already pushed to remote branch? - Stack Overflow

    The -m option specifies the parent number. This is because a merge commit has more than one parent, and Git does not know automatically which parent was the mainline, and which parent was the branch you want to un-merge.

    When you view a merge commit in the output of git log, you will see its parents listed on the line that begins with Merge:

    commit 8f937c683929b08379097828c8a04350b9b8e183
    Merge: 8989ee0 7c6b236
    Author: Ben James ben@example.com
    Date: Wed Aug 17 22:49:41 2011 +0100

    Merge branch 'gh-pages'

    Conflicts:
    README

    In this situation, git revert 8f937c6 -m 1 will get you the tree as it was in 8989ee0, and git revert -m 2 will reinstate the tree as it was in 7c6b236.

    2016年11月10日 GMT+1 下午2:00:22 - permalink - archive.org - http://stackoverflow.com/questions/7099833/how-to-revert-a-merge-commit-thats-already-pushed-to-remote-branch
    git revert
  • Steve Lorek—Ruby and Rails Developer, Southampton, UK—How to Shrink a Git Repository

    don't fucking commit useless binary files !!

    2016年10月26日 GMT+2 上午9:58:33 - permalink - archive.org - http://stevelorek.com/how-to-shrink-a-git-repository.html
    git
  • How to update remote branch list on local machine? - Detlus Knowledge Base

    git remote update origin --prune

    2016年9月28日 GMT+2 上午9:59:41 - permalink - archive.org - http://kb.detlus.com/articles/git/how-to-update-remote-branch-list-on-local-machine/
    branch git remote
  • Carrying your Git settings around

    .ssh/authorized_keys

    environment="GIT_AUTHOR_NAME=Arnaud M",environment="GIT_AUTHOR_EMAIL=arnaud@foo.bar",environment="GIT_COMMITTER_NAME=Arnaud M",environment="GIT_COMMITTER_EMAIL=arnaud@foo.bar" ssh-rsa .....

    Peut être pratique quand plusieurs personnes commit depuis le même serveur (pour avoir un historique git avec les noms..)

    2016年6月22日 GMT+2 下午4:11:50 - permalink - archive.org - http://cweiske.de/tagebuch/carry-git-settings.htm
    git ssh
  • A succesful Git branching model considered harmful

    Un workflow git qui a le mérite d'être simple : le cactus

    2016年2月29日 GMT+1 下午3:52:24 - permalink - archive.org - https://barro.github.io/2016/02/a-succesful-git-branching-model-considered-harmful/
    git workflow
  • thumbnail
    jimeh/git-aware-prompt: Display current Git branch name in your terminal prompt when in a Git working directory.

    Ptetre qu'un jour je passerai à zsh (ohmyzsh)

    En attendant je bricole

    2016年2月4日 GMT+1 上午11:24:41 - permalink - archive.org - https://github.com/jimeh/git-aware-prompt
    bash git prompt
  • thumbnail
    Remove files from Git commit - Stack Overflow

    Pour cancel un commit qui n'a pas encore été push

    git reset --soft HEAD^

    2016年1月28日 GMT+1 下午4:04:19 - permalink - archive.org - http://stackoverflow.com/questions/12481639/remove-files-from-git-commit
    cancel commit git
  • ben174/git-draw - JavaScript

    ahah

    2016年1月18日 GMT+1 上午10:21:54 - permalink - archive.org - https://github.com/ben174/git-draw
    git history
  • thumbnail
    How do I remove local (untracked) files from my current Git branch? - Stack Overflow

    Show what will be deleted with the -n option:

    git clean -f -n

    Then - beware: this will delete files - run:

    git clean -f

    2016年1月5日 GMT+1 下午2:29:09 - permalink - archive.org - http://stackoverflow.com/questions/61212/how-do-i-remove-local-untracked-files-from-my-current-git-branch
    clean git reset
  • http://ericrie.se/blog/git-freebase/
    2015年11月1日 GMT+1 上午8:57:07 - permalink - archive.org - http://http://ericrie.se/blog/git-freebase/
    git
  • Follow-up to 'GitFlow considered harmful' | End of Line Blog
    2015年10月13日 GMT+2 下午4:43:32 - permalink - archive.org - http://endoflineblog.com/follow-up-to-gitflow-considered-harmful
    git
  • Git : annuler proprement un commit après un push

    via Doo

    2015年10月7日 GMT+2 下午5:17:11 - permalink - archive.org - http://blog.mathieu-leplatre.info/git-annuler-proprement-un-commit-apres-un-push-fr.html
    git push revert
  • http read only access

    Pratique pour cloner en http

    servir betement avec apache

    • hoot post-update :
      exec git update-server-info
    2015年10月5日 GMT+2 下午3:21:54 - permalink - archive.org - https://links.infomee.fr/?Opxcxw
    git gitolite
  • Apps/Gitg - GNOME Wiki!

    Sympa ce client graphique

    2015年9月25日 GMT+2 上午9:58:02 - permalink - archive.org - https://wiki.gnome.org/action/show/Apps/Gitg?action=show&redirect=Gitg
    git graphique
  • GitFlow considered harmful | End of Line Blog
    2015年9月22日 GMT+2 下午2:42:39 - permalink - archive.org - http://endoflineblog.com/gitflow-considered-harmful
    git
  • thumbnail
    git stats: insertions, deletions, files, commits

    Nice!

    2015年9月15日 GMT+2 下午2:47:16 - permalink - archive.org - https://gist.github.com/lexqt/2720263
    git stat
  • http://chris.beams.io/posts/git-commit/
    2015年9月14日 GMT+2 上午8:22:10 - permalink - archive.org - http://http://chris.beams.io/posts/git-commit/
    git
  • Blinking Commits

    Yeah !

    2015年8月13日 GMT+2 上午11:57:56 - permalink - archive.org - http://blog.annharter.com/2015/08/12/blinking-commits.html
    blink commit git
  • ariejan de vroom

    /me découvre les cherry-pick

    2015年7月28日 GMT+2 上午10:18:19 - permalink - archive.org - https://ariejan.net/2010/06/10/cherry-picking-specific-commits-from-another-branch/
    cherry git pick
  • Gogs: Go Git Service - A self-hosted Git service written in Go

    Un github like

    2015年6月15日 GMT+2 上午10:54:46 - permalink - archive.org - http://gogs.io/
    git github
  • Config repo git pour éviter les conneries

    git config receive.denyNonFastforwards true

    via alk

    2015年6月12日 GMT+2 上午10:22:05 - permalink - archive.org - https://links.infomee.fr/?vbEYvA
    config git
  • Git Client SmartGit

    GUI pour le log de git

    2015年5月27日 GMT+2 下午5:40:45 - permalink - archive.org - http://www.syntevo.com/smartgit/
    git
  • gerrit - Gerrit Code Review - Google Project Hosting

    Une couche permettant de faire de la review

    2015年5月27日 GMT+2 下午5:40:23 - permalink - archive.org - https://code.google.com/p/gerrit/
    git review
  • irc.gitter.im

    On peut se connecter à gitter avec IRC

    2015年5月11日 GMT+2 下午5:26:17 - permalink - archive.org - https://irc.gitter.im/
    chat git gitter irc talk
  • 25 Tips for Intermediate Git Users
    2015年1月18日 GMT+1 下午2:49:24 - permalink - archive.org - https://www.andyjeffries.co.uk/25-tips-for-intermediate-git-users/
    git
  • sitaramc/gitolite User and repo management (cli)

    Testé et approuvé

    via Skunnyk

    2015年1月12日 GMT+1 下午3:31:38 - permalink - archive.org - https://github.com/sitaramc/gitolite
    git
  • Managing Projects with GitHub | Lullabot
    2015年1月1日 GMT+1 下午2:58:42 - permalink - archive.org - https://www.lullabot.com/blog/article/managing-projects-github
    git github
  • Git Workflows and Tutorials | Atlassian Git Tutorial
    2015年1月1日 GMT+1 下午2:51:48 - permalink - archive.org - https://www.atlassian.com/git/tutorials/comparing-workflows/#!workflow-gitflow
    git workflow
  • thumbnail
    git diff - Show all changed files between two Git commits - Stack Overflow

    Je prends de plus en plus le réflexe de "git init" dans certains dossiers un peu chaud qui bougent beaucoup comme des dossiers de configuration..

    Et là arrive le moment où je me pose la question : qu'est ce que j'ai touché depuis que j'ai fais mon git ini ? Et voilà la commande magique qui répond à ma question :

    git diff --name-only SHA1 SHA2

    Après si vous voulez la liste entre le premier et le dernier commit :
    git diff --name-only HEAD $(git log --format=%H | tail -1)

    2014年11月5日 GMT+1 下午2:53:43 - permalink - archive.org - http://stackoverflow.com/questions/1552340/show-all-changed-files-between-two-git-commits
    diff file git list
  • thumbnail
    A git Tutorial and Primer
    2014年6月16日 GMT+2 下午11:07:34 - permalink - archive.org - http://www.danielmiessler.com/study/git/
    git
  • Bien utiliser Git merge et rebase • Git Attitude : formations Git qualitatives et sympathiques

    tout est dans le titre

    via Skunnyk

    2014年5月12日 GMT+2 上午11:23:01 - permalink - archive.org - http://www.git-attitude.fr/2014/05/04/bien-utiliser-git-merge-et-rebase/
    git
  • The Symfony Core Team is back - Symfony

    nouvelle hierarchie de commit mise en place par symfony

    2014年4月10日 GMT+2 下午1:39:14 - permalink - archive.org - http://symfony.com/blog/the-symfony-core-team-is-back
    git
  • tbaggery - A Note About Git Commit Messages

    conseils pour les messages de commit

    2014年4月7日 GMT+2 下午5:42:22 - permalink - archive.org - http://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html
    git
  • Explain Git with D3

    Quelques commandes git expliquées visuellement et dynamiquement

    2014年3月24日 GMT+1 下午12:50:17 - permalink - archive.org - http://www.wei-wang.com/ExplainGitWithD3/
    git
  • Git, boutez les bugs, domptez votre historique!

    Quelques trucs sympas, mais encore un peu avancés pour le moment

    2014年2月27日 GMT+1 下午5:52:30 - permalink - archive.org - http://putaindecode.fr/posts/git/boutez-les-bugs-domptez-votre-historique/
    git
  • hub · the command-line wrapper for git

    Tiens je ne connaissais pas du tout ce wrapper.. pratique, à tester

    2014年2月27日 GMT+1 下午2:47:58 - permalink - archive.org - http://hub.github.com/
    git github
  • thumbnail
    Exemple git rebase
    • http://symfony.com/doc/2.0/contributing/code/patches.html#step-3-submit-your-patch
    • http://labs.excilys.com/2012/02/28/preparez-vous-a-reecrire-lhistoire-avec-git-rebase/
    2014年2月20日 GMT+1 下午1:22:50 - permalink - archive.org - http://infomee.fr/vrac/rebase.png
    git rebase
  • Git utiliser une branch remote

    Before you can start working locally on a remote branch, you need to fetch it as called out in answers below.

    To fetch a branch, you simply need to:

    git fetch origin

    This will fetch all of the remote branches for you. With the remote branches in hand, you now need to check out the branch you are interested in, giving you a local working copy:

    git checkout -b test origin/test

    ou : git checkout -t origin/test

    2014年2月20日 GMT+1 下午12:36:17 - permalink - archive.org - http://about:blank
    branch git
  • 5 Fundamental differences between GIT & SVN « BoxySystems Inc.
    2014年2月18日 GMT+1 下午2:18:25 - permalink - archive.org - http://boxysystems.com/index.php/5-fundamental-differences-between-git-svn/
    git svn
  • What are the differences between SVN and Git? · GitHub Help
    2014年2月18日 GMT+1 下午2:08:49 - permalink - archive.org - https://help.github.com/articles/what-are-the-differences-between-svn-and-git
    git svn
  • Ignoring files · GitHub Help

    Ignorer un fichier versionné :
    git update-index --assume-unchanged path/to/file.txt

    2014年2月5日 GMT+1 上午10:10:37 - permalink - archive.org - https://help.github.com/articles/ignoring-files
    git ignore
  • Git workflow continuous integration

    Des workflow git pour l'intégration continue

    2014年2月4日 GMT+1 上午11:44:39 - permalink - archive.org - https://www.google.fr/search?q=git+workflow+continuous+integration
    git
  • Story Branching and Continuous Integration: a swords-to-plowshares tale - Atlassian Blogs

    Workflow for continuous integration environments

    2014年2月4日 GMT+1 上午11:43:20 - permalink - archive.org - http://blogs.atlassian.com/2012/07/feature-branching-continuous-integrationgit-bamboo/
    git github
  • Feature Branch Workflow | Atlassian Git Tutorial

    Workflow for continuous integration environments

    2014年2月4日 GMT+1 上午11:42:51 - permalink - archive.org - https://www.atlassian.com/git/workflows#!workflow-feature-branch
    git
  • Git - Documentation

    Y'a rien à dire sur ce book, c'est clair, concis, bien schématisé. Je viens de me faire la partie sur les branches car je commence à en avoir besoin sur plusieurs projets comme Piclodio2

    2014年2月3日 GMT+1 下午10:54:50 - permalink - archive.org - http://git-scm.com/doc
    git
  • thumbnail
    version control - How to preview git-pull without doing fetch? - Stack Overflow

    After doing a git fetch, do a git log HEAD..origin to show the log entries between your last common commit and the origin branch. To show the diffs, use either git log -p HEAD..origin to show each patch, or git diff HEAD...origin (three dots not two) to show a single diff.

    2014年2月1日 GMT+1 下午1:45:43 - permalink - archive.org - http://stackoverflow.com/questions/180272/how-to-preview-git-pull-without-doing-fetch
    git preview
  • git ready » list remote branches

    Un autre site avec plein d'article sur git

    2014年2月1日 GMT+1 下午12:30:45 - permalink - archive.org - http://gitready.com/intermediate/2009/02/13/list-remote-branches.html
    git
  • git concepts simplified

    Slide git

    2013年12月7日 GMT+1 下午3:59:37 - permalink - archive.org - http://gitolite.com/gcs/index.html#(1)
    git
  • Commit Often, Perfect Later, Publish Once—Git Best Practices

    Quelques best practices

    2013年12月7日 GMT+1 下午3:50:21 - permalink - archive.org - http://sethrobertson.github.io/GitBestPractices/
    git
  • Git Cheatsheet

    Great interactive cheatsheet

    2013年11月8日 GMT+1 下午1:31:30 - permalink - archive.org - http://www.ndpsoftware.com/git-cheatsheet.html
    git memo
  • GitHub does dotfiles - dotfiles.github.io
    2013年10月24日 GMT+2 下午8:24:13 - permalink - archive.org - http://dotfiles.github.io/
    dotfiles git
  • Git backups, and no, it's not just about pushing | Agile Zone

    Quelques solutions pour backup un repo git

    2013年9月25日 GMT+2 上午11:38:28 - permalink - archive.org - http://agile.dzone.com/articles/git-backups-and-no-its-not
    backup git
  • Ungit, enfin un client git joli et multiplateforme - git-ressources
    2013年9月8日 GMT+2 下午9:24:49 - permalink - archive.org - http://www.blogduwebdesign.com/git-ressources/ungit-client-git-joli-multiplateforme/1032
    git ui
Links per page: 20 50 100
◄Older
page 1 / 2
Shaarli - The personal, minimalist, super-fast, database free, bookmarking service by the Shaarli community - Help/documentation