You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: crates/but-action/src/lib.rs
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -90,7 +90,7 @@ pub fn freestyle(
90
90
- `absorb`: Take a set of file changes and amend them into the existing commits in the project.
91
91
This requires you to figure out where the changes should go based on the locks, assingments and any other user provided information.
92
92
- `split a commit`: Take an existing commit and split it into multiple commits based on the the user directive.
93
-
This is a multi-step operation where you will need to create one or more black commits, and the move the file changes from the original commit to the new commits.
93
+
This can be achieved by using the `split_commit` tool.
94
94
- `split a branch`: Take an existing branch and split it into two branches. This basically takes a set of committed file changes and moves them to a new branch, removing them from the original branch.
95
95
This is useful when you want to separate the changes into a new branch for further work.
96
96
In order to do this, you will need to get the branch changes for the intended source branch (call the `get_branch_changes` tool), and then call the split branch tool with the changes you want to split off.
0 commit comments