diff options
author | Achilleas Pipinellis <axil@gitlab.com> | 2018-04-13 08:42:10 +0000 |
---|---|---|
committer | Achilleas Pipinellis <axil@gitlab.com> | 2018-04-13 08:42:10 +0000 |
commit | 791bc18a5faed3043936f0bd4885a9dbe121ffba (patch) | |
tree | fe76e7edf334ac0fee153b2468ad32179526bd28 /doc/gitlab-basics/command-line-commands.md | |
parent | ac149be040009eff8847a1078031d92c5afc27d8 (diff) | |
parent | 92f1f67877e7eee375f911f27df9517ec55d6cca (diff) | |
download | gitlab-ce-791bc18a5faed3043936f0bd4885a9dbe121ffba.tar.gz |
Merge branch 'contribute/no-rm-rf-gitlab-basics' into 'master'
Don't use "-f" with "rm" in Gitlab-Basics Docs
Closes #20071
See merge request gitlab-org/gitlab-ce!18027
Diffstat (limited to 'doc/gitlab-basics/command-line-commands.md')
-rw-r--r-- | doc/gitlab-basics/command-line-commands.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/gitlab-basics/command-line-commands.md b/doc/gitlab-basics/command-line-commands.md index 2a531193adf..c9766040234 100644 --- a/doc/gitlab-basics/command-line-commands.md +++ b/doc/gitlab-basics/command-line-commands.md @@ -71,7 +71,7 @@ rm NAME-OF-FILE ### Remove a directory and all of its contents ``` -rm -rf NAME-OF-DIRECTORY +rm -r NAME-OF-DIRECTORY ``` ### View history in the command line |