Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorHannes Rosenögger <123haynes@gmail.com>2016-04-19 18:35:33 +0300
committerHannes Rosenögger <123haynes@gmail.com>2016-04-19 18:35:33 +0300
commit9bab098455a2fb15641f82660ef50c99279cec22 (patch)
treefeca0b9ee799f2fb670eb821588ce6aeb3c7cea7 /doc
parent0063194ad6029915361d282392b6ab207ffd1520 (diff)
parentfce97dfce7f7be141c48892a63e3fe95e8fb756b (diff)
Merge branch 'patch-1' into 'master'
"git lfs init" is deprecated, use "git lfs install" instead. Recent releases of git-lfs warn that "init" is a deprecated command and that "install" should be used. See merge request !3779
Diffstat (limited to 'doc')
-rw-r--r--doc/workflow/lfs/manage_large_binaries_with_git_lfs.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/workflow/lfs/manage_large_binaries_with_git_lfs.md b/doc/workflow/lfs/manage_large_binaries_with_git_lfs.md
index ba91685a20b..31620044b15 100644
--- a/doc/workflow/lfs/manage_large_binaries_with_git_lfs.md
+++ b/doc/workflow/lfs/manage_large_binaries_with_git_lfs.md
@@ -44,7 +44,7 @@ check it into your Git repository:
```bash
git clone git@gitlab.example.com:group/project.git
-git lfs init # initialize the Git LFS project project
+git lfs install # initialize the Git LFS project project
git lfs track "*.iso" # select the file extensions that you want to treat as large files
```