-
Notifications
You must be signed in to change notification settings - Fork 890
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In case of reabese of repository with submodules, submodules are left… #1788
Open
igadmg
wants to merge
33
commits into
libgit2:master
Choose a base branch
from
igadmg:master
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 1 commit
Commits
Show all changes
33 commits
Select commit
Hold shift + click to select a range
5e36970
enumerate diff lines in patch changeset.
igadmg d522310
rebase with submodules fixed.
igadmg 0041df5
added Common.props
igadmg d3893f0
Merge github.com:libgit2/libgit2sharp
igadmg d8ab449
Exception is thrown if file path is passed as remote to Commands.Fetch
igadmg 8967743
In case of reabese of repository with submodules, submodules are left…
igadmg 2dc649e
Added SubmoduleUpdateOptions to rebase options.
igadmg 64f6962
Update RebaseOptions.cs
igadmg 691f705
Merge branch 'master' of github.com:yatagarasu25/libgit2sharp
igadmg b0aae85
Merge branch 'master' of github.com:libgit2/libgit2sharp
igadmg 697dadc
Merge branch 'master' of github.com:yatagarasu25/libgit2sharp
igadmg 997fbb2
Merge branch 'master' of github.com:yatagarasu25/libgit2sharp
igadmg 12d28e4
update.
igadmg e4eaa4e
Update on Command.Pull but it does not work as expected actually.
igadmg 11b3c9b
update.
igadmg d240985
update.
igadmg 3a8ca30
Merge D:\workspace\libgit2sharp
igadmg 85a21cb
Merge D:\workspace\libgit2sharp
igadmg b36c410
update.
igadmg 4c7ca57
Merge D:\workspace\GitKeeper\libgit2sharp
igadmg 45df744
Update to netstandard 2.1
igadmg 9b58d4c
Merge remote-tracking branch 'fork/master'
igadmg 1053623
fixed for net472
igadmg 4ff7a44
Update LibGit2Sharp.NativeBinaries to 2.0.315
bording e097d0b
React to ABI changes
bording d79fd3b
update
igadmg 0492494
update
igadmg 683880f
update
igadmg 63541e4
Merge remote-tracking branch 'fork/libgit2-update'
igadmg 4eea28e
update
igadmg 158ff02
Merge remote-tracking branch 'fork/libgit2-update'
igadmg 87f6eea
update
igadmg 80ffa03
Merge branch 'master' of github.com:yatagarasu25/libgit2sharp
igadmg File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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 |
---|---|---|
|
@@ -70,6 +70,13 @@ public virtual void Init(string name, bool overwrite) | |
} | ||
} | ||
|
||
|
||
public virtual void UpdateAll(SubmoduleUpdateOptions options) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. SubmoduleCollection.cs(74,29): error CS1591: Missing XML comment for publicly visible type or member 'SubmoduleCollection.UpdateAll(SubmoduleUpdateOptions)' [/home/vsts/work/1/s/LibGit2Sharp/LibGit2Sharp.csproj] This is making the build status fail. I noticed this afterwards. |
||
{ | ||
foreach (var sm in this) | ||
Update(sm.Name, options); | ||
} | ||
|
||
/// <summary> | ||
/// Update specified submodule. | ||
/// <para> | ||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I would like it as an optional parameter so we can override if it we want to pls.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What exactly you want to override here? AFAIK without that line rebase will not be possible to make.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I am saying extract the
new SubmoduleUpdateOptions()
to an optional param that you pass intoUpdateAll
.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ok, got it. Added them to RebaseOptions, i think that is most appropriate place.