【发布时间】:2021-08-22 20:13:54
【问题描述】:
我很久以前使用remotes::install_github 在 R 中从 GitHub 安装了一个包。从那以后,这个包有几个新的提交,并且所有的提交都有相同的包版本。我想找出我第一次安装的 GitHub 提交。
【问题讨论】:
标签: r github commit sha remotes
我很久以前使用remotes::install_github 在 R 中从 GitHub 安装了一个包。从那以后,这个包有几个新的提交,并且所有的提交都有相同的包版本。我想找出我第一次安装的 GitHub 提交。
【问题讨论】:
标签: r github commit sha remotes
package_info()可以用:
install.packages("devtools")
library("devtools")
package_info("<package_name>")
【讨论】: