320 links
  • Sbgodin
  • Home
  • Login
  • RSS Feed
  • ATOM Feed
  • Tag cloud
  • Picture wall
  • Daily
Links per page: 20 50 100
page 1 / 1
16 results tagged dvcs x
  • Supprimer le tout dernier \n
    perl -i -pe 'chomp if eof' <FILE>

    Vim ajoute systématiquement le tout dernier retour chariot. En développement versionné, ce type de différence peut agacer.
    Sun 16 Mar 2014 11:26:58 AM CET - permalink -
    QRCode
    - https://shaarli.sbgodin.fr/?hpVnsg
    dvcs fr info
  • Learn Git Branching
    Thu 06 Feb 2014 05:19:04 PM CET - permalink -
    QRCode
    - http://pcottle.github.io/learnGitBranching/
    dvcs en git info
  • Git Cheatsheet • NDP Software
    Thu 23 Jan 2014 01:49:32 PM CET - permalink -
    QRCode
    - http://ndpsoftware.com/git-cheatsheet.html
    dvcs fr git
  • Git - Git Configuration
    git config --global core.autocrlf true
    git config --global core.autocrlf input
    git config --global core.autocrlf false
    Fri 17 Jan 2014 10:31:38 PM CET - permalink -
    QRCode
    - http://git-scm.com/book/ch7-1.html#Formatting-and-Whitespace
    dvcs en git
  • Pour arrêter de galérer avec Git « Développeur web freelance
    Tutorial sur Git
    Tue 14 Jan 2014 09:49:33 AM CET - permalink -
    QRCode
    - http://www.miximum.fr/tutos/1546-enfin-comprendre-git
    dvcs fr git
  • What is Your Branching Model? | Javalobby
    According to the author, there is at least:
    * Mainline
    * Cascade
    * Trunk-Based Development
    * Short Lived Feature Branches
    * Continuous Deployment
    Fri 10 Jan 2014 02:28:26 PM CET - permalink -
    QRCode
    - http://java.dzone.com/articles/what-your-branching-model
    dvcs en
  • github-backup
    Sauvegarde les référentiels en tant que branches externes en local.
    Sekurkopias la deponejojn kiel eksterajn branĉojn loke.
    Backups the repositories as external branches, locally.
    Tue 24 Dec 2013 08:26:56 AM CET - permalink -
    QRCode
    - http://joeyh.name/code/github-backup/
    dvcs en eo fr git
  • Convert Hg to Git « Dave Page
    $ cd ~/Desktop
    $ git clone git://repo.or.cz/fast-export.git
    $ git init git_repo
    $ cd git_repo
    $ ~/Desktop/fast-export/hg-fast-export.sh -r /path/to/old/mercurial_repo
    Fri 20 Dec 2013 12:42:01 AM CET - permalink -
    QRCode
    - http://chwalisz.org/2013/01/27/convert-hg-to-git/
    dvcs en git hg
  • Why you shouldn't use git merge --rebase | glyphobet • глыфобет • γλυφοβετ
    Thu 19 Dec 2013 12:01:05 PM CET - permalink -
    QRCode
    - https://blog.glyphobet.net/essay/2504
    dvcs en git
  • How to use git to lose data
    When you delete a local git repository, what's missing?

    * Dirty (uncommitted) state
    * Hooks
    * Reflog
    * Branches
    * tags
    * commits on inactive branches
    * unreferenced commits
    * "stashed" work
    * git-rerere data
    * git notes
    Sat 07 Dec 2013 06:06:26 PM CET - permalink -
    QRCode
    - https://www.cs.cmu.edu/~davide/howto/git_lose.html
    dvcs en git
  • Hg Init: a Mercurial tutorial by Joel Spolsky
    « Mercurial is a modern, open source, distributed version control system, and a compelling upgrade from older systems like Subversion. In this user-friendly, six-part tutorial, Joel Spolsky teaches you the key concepts. Also, Fog Creek offers free monthly webinars that go over the basics of Mercurial. »
    Sat 30 Mar 2013 10:58:02 AM CET - permalink -
    QRCode
    - http://hginit.com/
    dvcs en
  • Récupérer une branche supprimée sous Git | Sam & Max: Python, Django, Git et du cul
    git reflog / git fsck
    git branch nom_de_branche votre_hash
    Wed 27 Mar 2013 03:10:28 PM CET - permalink -
    QRCode
    - http://sametmax.com/recuperer-une-branche-supprimee-sous-git/
    dvcs fr
  • A successful Git branching model » nvie.com
    « In this post I present the development model that I’ve introduced for all of my projects (both at work and private) about a year ago, and which has turned out to be very successful. I’ve been meaning to write about it for a while now, but I’ve never really found the time to do so thoroughly, until now. I won’t talk about any of the projects’ details, merely about the branching strategy and release management. »
    Tue 19 Mar 2013 10:54:14 AM CET - permalink -
    QRCode
    - http://nvie.com/posts/a-successful-git-branching-model/
    dvcs en git
  • A successful Git branching model » nvie.com
    « In this post I present the development model that I’ve introduced for all of my projects (both at work and private) about a year ago, and which has turned out to be very successful. I’ve been meaning to write about it for a while now, but I’ve never really found the time to do so thoroughly, until now. I won’t talk about any of the projects’ details, merely about the branching strategy and release management. »
    Tue 19 Mar 2013 10:54:14 AM CET - permalink -
    QRCode
    - http://nvie.com/posts/a-successful-git-branching-model/
    dvcs en
  • Convert SVN to Github
    To convert a SVN to GIT, keeping the history.

    1. Setup a "authors.txt" file containing one line a author: SVN_NAME = GIT_NAME <email@adress>
    This will map the SVN user name with the Github user accounts and email.

    2. git svn clone $SVN –no-metadata -A authors.txt
    The will create a local Git repository with all the revisions of the SVN.

    3. git remote add origin git@github.com:Account/Repos
    You must be in the local repository and have created a brand new repository "Repos" with your account "Account".

    4. git push -u origin master
    To push the very first commits.
    Fri 15 Mar 2013 12:05:59 PM CET - permalink -
    QRCode
    - http://sebastian.formzoo.com/2010/11/04/3-steps-convert-svn-dump-to-git/
    dvcs en
  • Freshness of branches in Mercurial
    hg branches --color never | egrep --only-matching '^[^ ]+' | for i in $(cat) ;do hg log --rev "$i" --template '{date|localdate|isodate} {branch} ' ;done | sort --reverse
    Thu 14 Mar 2013 10:35:01 AM CET - permalink -
    QRCode
    - https://shaarli.sbgodin.fr/?yZ0ZMA
    dvcs en
Links per page: 20 50 100
page 1 / 1
Shaarli - The personal, minimalist, super-fast, database free, bookmarking service by the Shaarli community - Help/documentation