diff options
author | Hannes Rosenögger <123haynes@gmail.com> | 2016-04-19 15:35:33 +0000 |
---|---|---|
committer | Hannes Rosenögger <123haynes@gmail.com> | 2016-04-19 15:35:33 +0000 |
commit | 9bab098455a2fb15641f82660ef50c99279cec22 (patch) | |
tree | feca0b9ee799f2fb670eb821588ce6aeb3c7cea7 | |
parent | 0063194ad6029915361d282392b6ab207ffd1520 (diff) | |
parent | fce97dfce7f7be141c48892a63e3fe95e8fb756b (diff) | |
download | gitlab-ce-9bab098455a2fb15641f82660ef50c99279cec22.tar.gz |
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
-rw-r--r-- | doc/workflow/lfs/manage_large_binaries_with_git_lfs.md | 2 |
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 ``` |