Showing 4 Result(s)
Excalidraw

Install Excalidraw server on local system

What is Excalidraw Excalidraw is a virtual collaborative whiteboard tool that lets you easily sketch diagrams that have a hand-drawn feel to them. Clone the repo Excalidraw is opensource, which can be installed locally by cloning it’s Github repository. git clone https://github.com/excalidraw/excalidraw.git Change directory cd excalidraw Install the dependencies yarn Start the server yarn start …

Git and Virtualmin

Introduction to Git Git is a source-code control system that allows multiple developers to work on the same project. Each developer has a copy of the repository on his workstation, and can check in changes to that repository and synchronize it with a central server. Other developers can then fetch those changes by synchronizing their …

Resync git repo with new gitignore file

After adding .gitignore file use following commands [php] git rm -r –cached . git add . git commit -m “.gitignore is now working” [/php] Make sure to commit first your changes you want to keep. The –cached option will keep your files untouched on your disk though. Other more solution: git rm –cached `git ls-files …