Tag: bash

Git Internals: Understanding the Plumbing Behind Your Daily Workflow
devops

Git Internals: Understanding the Plumbing Behind Your Daily Workflow

Every day, millions of developers run git add, git commit, and git push without a second thought. But have you ever wondered what actually happens inside the .git directory? Understanding Git's internals isn't just academic curiosity — it makes you a more effective developer, helps you recover

davide
Linux - Freeing RAM without rebooting
linux

Linux - Freeing RAM without rebooting

Simple command to free RAM on linux without rebooting #!/bin/bash sync; echo 1 > /proc/sys/vm/drop_caches; echo 2 > /proc/sys/vm/drop_caches; echo 3 > /proc/sys/vm/drop_caches Save into a file and set executable permission. Run the file with root privileges.

davide