FlareStart
HomeNewsHow ToSources
FlareStart

Where developers start their day. All the tech news & tutorials that matter, in one place.

Quick Links

  • Home
  • News
  • Tutorials
  • Sources
  • Privacy Policy

Connect

© 2026 FlareStart. All rights reserved.

Back to articles
The 3 Bash Aliases That Save Me 30 Minutes Every Day
How-ToDevOps

The 3 Bash Aliases That Save Me 30 Minutes Every Day

via Dev.to DevOpsAlex Spinov2h ago

I've been tuning my shell for 6 years. Most aliases I create, I never use again. But three have stuck — and they save me genuine time. 1. gp — Git Push With Branch Tracking alias gp = 'git push -u origin $(git branch --show-current)' I type gp instead of git push -u origin feature/my-branch-name dozens of times a day. The --show-current flag grabs the current branch name automatically. Time saved: ~15 seconds × 20 pushes/day = 5 minutes/day 2. serve — Instant HTTP Server alias serve = 'python3 -m http.server 8000' Need to share a file? Preview HTML? Test CORS? Just cd into a directory and type serve . Python's built-in server is good enough for 90% of cases. For more features: alias serve = 'npx serve -l 8000' # Directory listing, CORS headers, SPA support Time saved: ~30 seconds × 5 uses/day = 2.5 minutes/day 3. .. / ... / .... — Fast Directory Navigation alias .. = 'cd ..' alias ... = 'cd ../..' alias .... = 'cd ../../..' Tiny, but I use these 50+ times per day. It adds up. Bonus — m

Continue reading on Dev.to DevOps

Opens in a new tab

Read Full Article
0 views

Related Articles

Tutorials Are Lying to You Here’s What Actually Works ?
How-To

Tutorials Are Lying to You Here’s What Actually Works ?

Medium Programming • 55m ago

Flutter Mistakes That Make Apps Slow ⚡
How-To

Flutter Mistakes That Make Apps Slow ⚡

Medium Programming • 1h ago

Welcome Thread - v370
How-To

Welcome Thread - v370

Dev.to • 1h ago

How to Calculate Your Final Grade When the Syllabus Uses Weighted Categories
How-To

How to Calculate Your Final Grade When the Syllabus Uses Weighted Categories

Dev.to Beginners • 1h ago

How Word Scramble Solvers Use the Same Algorithm as Spell Checkers
How-To

How Word Scramble Solvers Use the Same Algorithm as Spell Checkers

Dev.to Beginners • 2h ago

Discover More Articles