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
- Rewrites a file with path `filePath` within branch `branchName` with content `content` and applies `commitMessage` message to commit
73
72
- Creates the file and its parent folders if doesn't exists
@@ -86,6 +85,7 @@ Note: null passed as a branch name is considered as Master Branch. Any non-null
86
85
- Returns ordered list of all commits located between commits specified by `firstCommitId` and `untilCommitId` inclusively within branch `branchName`
87
86
- If `firstCommitId` is null then all commits until commit specified by `untilCommitId` inclusively are fetched
88
87
- If `untilCommitId` is null then all commits starting from commit specified by `firstCommitId` are fetched
88
+
- If `firstCommitId` and `untilCommitId` are null then all commits are fetched
89
89
-`List<VCSCommit> getCommitsRange(String branchName, String firstCommitId, WalkDirection direction, int limit)`
90
90
- Returns ordered list of `limit` commits (0 is unlimited) starting from commit specified by `firstCommitId` in direction specified by `direction`
91
91
- If `firstCommitId` is null then commits are starting at branch `branchName` first commit (for ASC direction) or at head of branch (for DESC direction)
0 commit comments