Maxime Chambreuil

Thursday August 7, 2008

SFLphone @ Linux World Expo in San Francisco, CA

Max @ 12:26 | Filed under: Savoir-faire Linux, Telephony

My presentation of SFLphone at the Linux World Expo in San Francisco on the Ubuntu booth : [ PDF ]

Thursday June 26, 2008

Visiting Digium in Huntsville, AL

Max @ 16:56 | Filed under: Professional, Telephony, The USA

Huntsville, AL

Monday June 23, 2008

New York, NY

Max @ 22:55 | Filed under: The USA

Rockefeller Center

Sunday June 8, 2008

Parc Omega, Montebello, QC

Max @ 21:51 | Filed under: Animals

Saturday June 7, 2008

Summer Race on the Islands

Max @ 11:58 | Filed under: Sports
  • english
  • french
  • spanish

Location : Boucherville Islands Park
Distance : 10km
Time : 49′ 36”
Position in my category : 2 / 7

Sunday May 25, 2008

Arnprior, Ontario

Max @ 22:15 | Filed under: Canada

Arnprior, ON

Saturday May 24, 2008

2008 Parts Canada Superbike Championship

Max @ 21:43 | Filed under: Sports

Calabogie Motorsports Park

Sunday May 18, 2008

The Orphanage

Max @ 22:00 | Filed under: Movies

Mont Saint Bruno National Park

Max @ 17:00 | Filed under: Nature

Friday April 4, 2008

Tooltips for GIT

Max @ 21:07 | Filed under: Development, Documentation
  • english

GIT

Initialization

$ git config --global user.name “Your Name Comes Here”
$ git config –global user.email  you at yourdomain.example.com

Cloning

$ git clone git+ssh://sflphone_org@sflphone.org/git/sflphone.git

Edit .git/config to have :

[remote "origin"]
        url = git+ssh://sflphone_org@sflphone.org/git/sflphone.git
        fetch = +refs/heads/*:refs/remotes/origin/*
        push = +refs/heads/*:refs/remotes/origin/*

Committing and pushing

$ git-gui

Then “Add Existing”, “Commit” and “Push”.

Branching

Create a new branch toto :

$ git branch toto

List all branches :

$ git branch

Switch to branch toto :

$ git checkout toto

Display branches :

$ gitk

Delete branch toto :

$ git branch -d toto
« Previous PageNext Page »

Powered by WordPress