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
Can we have R layer function for git filter-branch?
On the command line git filter-branch can be used, among other things, to filter e.g. commit messages through a shell script. With littler or Rscript it is possible to write such scripts in R. However, it incures quite an overhead as for each commit the script is executed independently (so time is spent on starting R, loading packages and so on). It would be great to be able to filter branches within a single R session using a function. Would that be possible?
The text was updated successfully, but these errors were encountered:
Can we have R layer function for
git filter-branch
?On the command line
git filter-branch
can be used, among other things, to filter e.g. commit messages through a shell script. Withlittler
orRscript
it is possible to write such scripts in R. However, it incures quite an overhead as for each commit the script is executed independently (so time is spent on starting R, loading packages and so on). It would be great to be able to filter branches within a single R session using a function. Would that be possible?The text was updated successfully, but these errors were encountered: