Skip to contents

Status tables of package versions in different branches along with local installations. For local installation,a status column is returned which indicates if the local version is ahead or behind the DEV branch.

Usage

package_branches(package = NULL, branch_to_compare = "DEV")

Arguments

package

One (or more) of the PIP core packages. Default NULL will include all the packages

branch_to_compare

chacter: names of branch to compare to. Default is "DEV".

Value

tibble of pip packages and the corresponding package versions of branch

Examples

if (FALSE) {
package_branches()
package_branches(c("pipapi", "wbpip"))
package_branches(branch_to_compare = "QA")
}