Tuesday, 17 March 2009

Bazaar seems to do the job

Today I 'ave mainly been thinking about ... keeping my code under version control (again).

I have been using Bazaar for the last week or so and it just works. I started a new project and moved files around as I created and refactored. So for now its Bazaar for me. Its pity I would have to move away from google code (here) to here. But for now I will just continue to use it locally. These are my most used commands:




bzr whoami "Bob Smith bob@smith.com"
bzr whoami

bzr init # create a new repo in current folder
bzr add
bzr log
bzr status
bzr diff
bzr ignored
bzr rm file.py
bzr revert file.py
bzr rm -keep file.py
bzr commit -m 'story'
bzr mv folder newfolder
bzr mv file.py newfolder/


No comments:

Post a Comment