0

I have installed a package from GitHub in R long ago using remotes::install_github. Since then, the package has had several new commits, and all the commits have the same package version. I want to find out which GitHub commit was the one I installed the first time.

vahid-dan
  • 252
  • 2
  • 8

1 Answers1

2

package_info() can be used:

install.packages("devtools")
library("devtools")
package_info("<package_name>")
vahid-dan
  • 252
  • 2
  • 8