WARNING: THIS IS A TECHNICAL HOWTO.
YOU NEED A GOOD UNDERSTANDING OF THE COMMAND LINE AND GIT
Ok, so you would like to have a copy of the full repository on your local desktop.
Step 1: Install GIT – https://git-scm.com/ for your operating system.
Step 2: Go to https://bitbucket.org/cortexcoder/ and select the repository that you would like to have on your local computer.
Copy the URL to clone the repository.
Step 3: Open up your terminal. Linux and MacOS – search for terminal and open. Windows: Right click on the start button and select RUN – Type cmd on the open field and click OK. You should have a command line similar to the one below.
Type the following: git clone https://bitbucket.org/cortexcoder/filters.git
Replace the http URL with the appropriate repository URL
You should have something like the above picture and now you have the repository on you local computer.
How do I update it with new files? Type: cd filters (replace with repository name) and then git fetch. This will update the local repository.