Expose git add to CLI and remove add_all= True as default from repo.commit()#116
Open
hannahlanzrath wants to merge 26 commits intomainfrom
Open
Expose git add to CLI and remove add_all= True as default from repo.commit()#116hannahlanzrath wants to merge 26 commits intomainfrom
hannahlanzrath wants to merge 26 commits intomainfrom
Conversation
…rojectRepo classes Change attribute name in ProjectRepo
…putRepo Add "directory" naming backwarts compatibility to OutputRepo
Also move version update before the metadata is checked Co-authored-by: Johannes Schmölder <j.schmoelder@fz-juelich.de> Co-authored-by: Hannah Lanzrath <h.lanzrath@fz-juelich.de>
Update Zenodo.json
We had two CI workflows, one in the main CI working via tokens and one seperate workflow file, using trusted publishers. Since tokens are not recommended anymore and this was a duplicate, the CI working with tokens was removed.
Co-authored-by: Hannah Lanzrath <h.lanzrath@fz-juelich.de> Fix typos and directy speech Co-authored-by: Katharina Paul <katharina.paul2403@gmail.com>
Co-authored-by: Katharina Paul <katharina.paul2403@gmail.com>
Co-authored-by: Katharina Paul <katharina.paul2403@gmail.com>
Co-authored-by: Katharina Paul <katharina.paul2403@gmail.com>
Co-authored-by: Katharina Paul <katharina.paul2403@gmail.com>
Co-authored-by: Katharina Paul <katharina.paul2403@gmail.com>
Co-authored-by: Katharina Paul <katharina.paul2403@gmail.com>
This commit exposes the git add function to the CLI via "rdm add" which allows specifying files to be staged.
…om internal function calls
…l add_all flag in PI documentation
d19654a to
43541b6
Compare
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
This PR seeks to harmonize CADET-RDM further with the Git Interface, by exposing
git addviardm add, giving the possibility to stage single files instead of adding all with the commit. Secondly, the default setting ofadd_all=Truefor the Python interface methodrepo.commit()is changed toFalse, and the arguments removed from internal function calls respectively. Finanlly, the documentation is updated to make the use of these commands clearer and reflect those changes.