Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
9
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Switch to GitLab Next
Sign in / Register
Toggle navigation
Open sidebar
R-packages
ufs
Commits
1c1c5ab5
Commit
1c1c5ab5
authored
Nov 10, 2020
by
Gjalt-Jorn Peters
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
readme
parent
f5b5be10
Pipeline
#214149781
passed with stage
in 5 minutes and 45 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
20 additions
and
5 deletions
+20
-5
README.Rmd
README.Rmd
+10
-2
README.md
README.md
+10
-3
No files found.
README.Rmd
View file @
1c1c5ab5
...
...
@@ -61,7 +61,7 @@ install.packages('", packagename, "');
```"));
```
You can install the development version of ``r packagename`` from [GitLab](https://
about.
gitlab.com) with:
You can install the development version of ``r packagename`` from [GitLab](https://gitlab.com) with:
```{r echo=FALSE, comment="", results="asis"}
cat(paste0("``` r
...
...
@@ -69,4 +69,12 @@ remotes::install_gitlab('r-packages/", packagename, "');
```"));
```
(assuming you have `remotes` installed; otherwise, install that first using the `install.packages()` function)
If you want the even more cutting edge version, you can install from the `dev` branch (as opposed to the default branch, `prod`) with:
```{r echo=FALSE, comment="", results="asis"}
cat(paste0("``` r
remotes::install_gitlab('r-packages/", packagename, "@dev');
```"));
```
(This is assuming you have the `remotes` packages installed; otherwise, install that first using the `install.packages` function.)
README.md
View file @
1c1c5ab5
...
...
@@ -30,11 +30,18 @@ install.packages('ufs');
```
You can install the development version of
`ufs`
from
[
GitLab
](
https://
about.
gitlab.com
)
with:
[
GitLab
](
https://gitlab.com
)
with:
```
r
remotes
::
install_gitlab
(
'r-packages/ufs'
);
```
(assuming you have
`remotes`
installed; otherwise, install that first
using the
`install.packages()`
function)
If you want the even more cutting edge version, you can install from the
`dev`
branch (as opposed to the default branch,
`prod`
) with:
```
r
remotes
::
install_gitlab
(
'r-packages/ufs@dev'
);
```
(This is assuming you have the
`remotes`
packages installed; otherwise,
install that first using the
`install.packages`
function.)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment