Your task is to implement a simplified version control system in the form of a single class. The system should simulate basic version control operations while maintaining an underlying data structure to track commits and branches.
Initialization: When the system starts, it should have one branch named main
containing an initial commit with an id of 0
and the message "root".
Commit Operation: Implement a method commit(message)
that creates a new commit on the current branch. Each commit should have:
Branching: Implement a method branch(branch_name)
that creates a new branch starting at the current commit of the active branch. The new branch should be independent and allow further commits from that point onward.
Checkout: Implement a method checkout(branch_name)
that switches the current branch to the specified branch. If the branch does not exist, decide how to handle it (e.g., throw an error or create the branch, but be consistent in your approach).
Log Retrieval: Implement a method log()
that returns a list (or equivalent collection) of commit messages from the current branch. The log should start from the current commit and walk back through the parent chain until it reaches the initial commit.
Merge: Implement a method merge(branch_name)
that merges the commits of the specified branch into the current branch. For this simplified model, assume the following:
commit
, branch
, checkout
, log
, and merge
.main
branch containing commit 0
("root").main
using commit(message)
.feature
using branch("feature")
.feature
branch, commit additional changes.main
using checkout("main")
.feature
branch into main
using merge("feature")
.log()
to see the updated commit history.Implement this functionality in the programming language of your choice. Ensure your solution is well-organized and correctly handles the requirements specified above.