Skip to content

Instantly share code, notes, and snippets.

View flmmartins's full-sized avatar

Fernanda Martins flmmartins

View GitHub Profile
@flmmartins
flmmartins / #DevOps Roadmap.md
Last active October 22, 2025 10:07
DevOps Roadmap.md

Welcome to DevOps Roadmap

Here are outlined some ideas on how to improve DevOps skills

The main idea is that you do 5 actions for every skill you need to practice:

  1. Watch or read about a given subject
  2. Exercise by doing a project by yourself without following a course
  3. Explain what you did for someone with more experience than you
  4. Receive Feedback about your skill/project
#!/bin/bash
file=$1
test -z $file && echo "file required." 1>&2 && exit 1
git filter-branch -f --index-filter "git rm -r --cached $file --ignore-unmatch" --prune-empty --tag-name-filter cat -- --all
git ignore $file
git add .gitignore
git commit -m "Add $file to .gitignore"