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.
Asked
Active
Viewed 527 times
0

vahid-dan
- 252
- 2
- 8
1 Answers
2
package_info()
can be used:
install.packages("devtools")
library("devtools")
package_info("<package_name>")

vahid-dan
- 252
- 2
- 8
-
This doesn't show anything more than sessionInfo() does – Dennis May 14 '23 at 01:36