diff options
author | Elias Werberich <elias@werberich.de> | 2018-03-27 14:12:20 +0000 |
---|---|---|
committer | Elias Werberich <elias@werberich.de> | 2018-03-27 23:19:18 +0200 |
commit | 92f1f67877e7eee375f911f27df9517ec55d6cca (patch) | |
tree | 922032be8b58b757c93058234293764476410f6c /doc/gitlab-basics | |
parent | 092445a4025bc1033e2028655ba739961f5e4ebb (diff) | |
download | gitlab-ce-92f1f67877e7eee375f911f27df9517ec55d6cca.tar.gz |
Do not use '-f' with 'rm' in gitlab-basics docs
Diffstat (limited to 'doc/gitlab-basics')
-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 |