A collection of Void Linux scripts and info for noobs
Start by creating an organized set of directories for storing git projects: (Do not copy and paste the following lines one-by-one. Click the copy button.)
cd ~ &&
mkdir .git && cd .git &&
mkdir clones && cd clones Now that you are in the proper directory, you can clone the repo:
git clone https://github.com/konfuzhon/z-void-stuffAfter you've cloned a repo, it will not automatically update with new commits made to the owner's copy. Therefore, to keep this cloned repo up to date with the original, enter the following:
cd ~/.git/clones/z-void-stuff/git pull origin main