Questions tagged [bazaar]

Bazaar is a free distributed version control system (DVCS).

Bazaar is a free distributed version control system that helps you track project history over time and to collaborate easily with others. Whether you're a single developer, a co-located team or a community of developers scattered across the world, Bazaar scales and adapts to meet your needs. Part of the GNU Project, Bazaar is free software sponsored by Canonical.

Please report bugs to the bug tracker instead of posting them here on StackOverflow.

559 questions
-1
votes
1 answer

Does Django development follow the Bazaar Model of development?

Some would argue that Bazaar Model of development can lead to a tangled mess of cowboy code. I'm wondering, which model does Django follow? At first glance it seems to be a highly organized bazaar model, with vetting and triage stages and such. …
Soviut
  • 88,194
  • 49
  • 192
  • 260
-1
votes
1 answer

Bazaar version control - github / bitbucket alike solution?

Is there a bitbucket or github alike hosting service for Bazaar version control?
mjs
  • 21,431
  • 31
  • 118
  • 200
-1
votes
1 answer

how can I revert my files to its initial state using bzr

I have a file and I checkout using the command (BZR CHECKOUT ...). Now, I made a lot of commits and found out there are errors in my codes. I want to revert all my files back to its original form after I first checkout. can anybody help me with a…
xyxy
  • 187
  • 1
  • 3
  • 9
-2
votes
2 answers

How can I sort a date and time from oldest to newest in the format of ['2020-05-27 15:26:57', '2020-05-22 16:40:58']?

From a bzr repository I can return timestamps from different revision commits by using branch.repository.get_revision(revision_id).timestamp after I get the timestamp I can use: datetime.fromtimestamp(timestamp).strftime('%Y-%m-%d %H:%M:%S') to get…
1 2 3
37
38