Commit a large number of files to RStudio using the GIT panel

In RStudio, if you are dealing with a directory that contains a large number of files, and you want to commit and paste the latest changes (which you made on all of them) into your repository, the Git GUI component becomes very slow and practically does not work. Any idea?

+4
source share
1 answer

Of course, you can ignore the graphical interface and stick to the Git command line forever, but if you didn't want this, a quick jump to the Git command line would solve this problem for now.

The workaround I found is as follows:

  • Git RStudio.
  • Shell ( !)
  • :

{ : ! , !}

    git add -A && git commit -m 'staging all files'
  1. Git push. , , .
+5

Source: https://habr.com/ru/post/1675969/


All Articles