-
Notifications
You must be signed in to change notification settings - Fork 85
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Avoid using a branch's commit history (see #140).
- Loading branch information
1 parent
7ad96f0
commit 403331c
Showing
3 changed files
with
9 additions
and
3 deletions.
There are no files selected for viewing
3 changes: 3 additions & 0 deletions
3
Iceberg.package/IceAbstractCommitWalk.class/instance/uptoBranch..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
walk definition | ||
uptoBranch: anIceBranch | ||
self uptoCommit: anIceBranch lastCommit |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
commits | ||
commitsNotIn: anotherBranch | ||
^ self commits copyWithoutAll: anotherBranch commits | ||
^ self repository newCommitWalk | ||
fromBranch: self; | ||
uptoBranch: anotherBranch; | ||
commits |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters