4337 links
  • Arnaud's links
  • Home
  • Login
  • RSS Feed
  • ATOM Feed
  • Tag cloud
  • Picture wall
  • Daily
Links per page: 20 50 100
◄Older
page 3 / 6
Newer►
106 results tagged git x
  • How to resolve git merge conflicts with Vim - Flaviu Simihaian's Blog - Entrepreneur and Developer

    \o/

    December 9, 2016 at 9:54:02 AM GMT+1 - 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
    November 28, 2016 at 2:28:55 PM GMT+1 * - 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^
    November 24, 2016 at 3:55:17 PM GMT+1 - 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

    November 24, 2016 at 10:59:10 AM GMT+1 - 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>

    November 24, 2016 at 9:12:16 AM GMT+1 - 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

    November 16, 2016 at 2:22:37 PM GMT+1 - 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"

    November 10, 2016 at 4:59:31 PM GMT+1 - 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.

    November 10, 2016 at 2:00:22 PM GMT+1 - 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 !!

    October 26, 2016 at 9:58:33 AM GMT+2 - 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

    September 28, 2016 at 9:59:41 AM GMT+2 - 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..)

    June 22, 2016 at 4:11:50 PM GMT+2 - 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

    February 29, 2016 at 3:52:24 PM GMT+1 - 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

    February 4, 2016 at 11:24:41 AM GMT+1 - 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^

    January 28, 2016 at 4:04:19 PM GMT+1 - permalink - archive.org - http://stackoverflow.com/questions/12481639/remove-files-from-git-commit
    cancel commit git
  • ben174/git-draw - JavaScript

    ahah

    January 18, 2016 at 10:21:54 AM GMT+1 - 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

    January 5, 2016 at 2:29:09 PM GMT+1 - 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/
    November 1, 2015 at 8:57:07 AM GMT+1 - permalink - archive.org - http://http://ericrie.se/blog/git-freebase/
    git
  • Follow-up to 'GitFlow considered harmful' | End of Line Blog
    October 13, 2015 at 4:43:32 PM GMT+2 - permalink - archive.org - http://endoflineblog.com/follow-up-to-gitflow-considered-harmful
    git
  • Git : annuler proprement un commit après un push

    via Doo

    October 7, 2015 at 5:17:11 PM GMT+2 - 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
    October 5, 2015 at 3:21:54 PM GMT+2 - permalink - archive.org - https://links.infomee.fr/?Opxcxw
    git gitolite
Links per page: 20 50 100
◄Older
page 3 / 6
Newer►
Shaarli - The personal, minimalist, super-fast, database free, bookmarking service by the Shaarli community - Help/documentation