Using Git

 

If you need to clone a git repository you need to use the following command:

git clone git://git.kernel.org/pub/scm/bluetooth/bluez.git

To create a new repo from the scratch, first run:

git init

Then:

git add .

git commit

To create the initial git commit for this repo

Best poker site partypoker.fr

To commit, after make your changes with your favorite editor do

git add file1 file2 file3 …

git commit

If you want to commit all the changes you made use

git commit -a

To check the changes before commit:

git diff

If you  pass the –stat option to ‘git diff’ you will see a summary of lines changed by file.

To see the commit list

git log

If you pass the -p option the diff of the commit will be shown as well. For other logs, like commit by developer you can use ‘git shorlog’

If you wanna update you local tree with the origin tree, then

git pull origin

This will automatically merge your local tree with the new commits from the origin tree.

 

Recent Posts

Talk at Automotive Linux Summit

About a month ago I’ve been to the Automotive Linux Summit in Yokohama, Japan to present about the BlueZ stack and how it would fit in a CarKit system. You can find the slides here. The conference was very nice, about 200 attendees and many interesting talks.

Also on Dec, 1st I  attended the GENIVI Members Summit, where they created the Japanese working group of GENIVI.

Finally, I would like to thank Linux Foundation for sponsoring my travel to Yokohama.

  1. The week at Prague Leave a reply
  2. Bluetooth Changes for Linux 3.1 1 Reply
  3. Bluetooth SAP Client into oFono and BlueZ 1 Reply
  4. GSoC: BlueZ projects sucessfullly finished 1 Reply
  5. Bluetooth Changes for Linux 3.0 Leave a reply
  6. Bluetooth Security Leave a reply
  7. Another report on MeeGo Conference Leave a reply
  8. A little report of MeeGo Conference Leave a reply
  9. I’m going to MeeGo Conference Leave a reply