Browsed by
Category: GitLab

GitLab Wiki Markdown Coding

GitLab Wiki Markdown Coding

GitLab Flavored Markdown (GFM) Note: Not all of the GitLab-specific extensions to Markdown that are described in this document currently work on our documentation website. For the best result, we encourage you to check this document out as rendered by GitLab: markdown.md GitLab uses the Redcarpet Ruby library for Markdown processing. GitLab uses “GitLab Flavored Markdown” (GFM). It extends the standard Markdown in a few significant ways to add some useful functionality. It was inspired by GitHub Flavored Markdown. You…

Read More Read More

How does Large File Support LFS work in Gitlab

How does Large File Support LFS work in Gitlab

How does Large File Support LFS work in Gitlab   add and track a 3.7GB tar file in a repo, and push it: git lfs track “*.tar” cp <a folder>/a.tar . git add a.tar git commit -m “add a.tar” git push origin master Question 1: at the end of this process, has a.tar been uploaded on the gitlab server ? It is unclear as the “add” and the “commit” commands took some time (maybe not long enough to let me…

Read More Read More