惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

雷峰网
雷峰网
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
博客园 - 三生石上(FineUI控件)
博客园 - 聂微东
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Hugging Face - Blog
Hugging Face - Blog
Apple Machine Learning Research
Apple Machine Learning Research
博客园 - Franky
MyScale Blog
MyScale Blog
A
About on SuperTechFans
博客园_首页
B
Blog RSS Feed
Martin Fowler
Martin Fowler
大猫的无限游戏
大猫的无限游戏
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Vercel News
Vercel News
C
Check Point Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
博客园 - 【当耐特】
M
MIT News - Artificial intelligence
宝玉的分享
宝玉的分享
T
Tailwind CSS Blog
I
InfoQ
罗磊的独立博客

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
From Code to Clouds: Hosting a Professional Resume on Git...
Rahimah Sula · 2026-05-03 · via DEV Community

Introduction

In Part 1, we successfully moved the resume from a local editor to a live URL. But an empty repository is like a house without a front door, functional, yet inaccessible to those looking in. In this second installment, we’re going back into the terminal to master the art of the README.

I’ll show you how to turn a folder of code into a polished, technical portfolio that speaks for itself. Whether you’re a Cloud aspirant or a DevOps enthusiast, your documentation is your handshake. Let’s make it count.

Step 1: Navigating and Initializing the README
In the previous guide, we set up the environment. Now, we return to the terminal to add the "front door" of our project, that is the the README.md file.

Changing Directory: We start by using cd ~/Desktop/website to ensure we are working inside the correct project folder.

Creating the File: The touch README.md command is used to generate a blank Markdown file. Using the .md extension is crucial as it tells GitHub to render this as a formatted document rather than just plain text.

Opening the Editor: To add content, we use the vi README.md command. This opens the Vi text editor directly in the terminal, it's a lightweight, powerful tool that every Cloud and DevOps professional should be comfortable using.

location

Step 2: Inspecting and Verifying Content
Once I’ve finished editing in Vi, it’s best practice to verify that your data was saved exactly how you intended.

We use cat README.md to display the entire contents of the file directly in the terminal. This check ensures there are no typos or formatting errors in our Markdown syntax before we push.

The output shows a structured, professional layout:

Project Title: Using # for a clear H1 heading.

Live Links: Providing immediate access to the hosted resume.

Visual Elements: Using emojis (🚀, 🛠️, 📖) to make the documentation modern and readable.

Technical Milestones: A numbered list summarizing the core achievements of the project.

Command Reference: Using backticks (`) for code blocks, creating a "cheat sheet" for anyone who forks the repository.

readme

Step 3: The Version Control Lifecycle (Stage & Commit)
In this step, we move our new documentation through the Git lifecycle. It’s not enough to just create the file, we have to tell Git to track it.

git status (The Pulse Check): Before doing anything, I ran git status. You can see README.md highlighted in red under Untracked files. This confirms that Git sees a new file but isn't yet managing it.

git add README.md (Staging): This command moves the file into the staging area. The terminal warning about LF will be replaced by CRLF is a common occurrence in Git Bash on Windows, it’s just Git managing how line endings are handled between different operating systems.

git commit (The Snapshot): By running git commit -m "add README with project overview and commands", we officially record the change. The output "1 file changed, 30 insertions" serves as a receipt, confirming that our 30 lines of professional documentation are now part of the project's history.

commit

Step 4: The Final Push (Syncing to the Cloud)
This is the bridge between our local work and our public profile.

git push origin master: This command tells Git to take the committed changes (the new README) and upload them to the origin (GitHub) on the master branch.

"Enumerating objects: 4, done": Git is gathering the files you changed.

"Writing objects... 1.19 KiB": This confirms the actual data transfer.

The Confirmation: The line bb98894..e6d1410 master -> master is the technical "all clear." It shows your local branch is now perfectly synced with GitHub.

pushed

Step 5: Configuring the Global Gateway (GitHub Pages)
Once the code is safely in the cloud, you have to tell GitHub how to serve it to the public.

Navigating to the Settings > Pages tab is where the hosting magic happens.

I set the source to Deploy from a branch and selected the master branch and / (root) folder. This tells the GitHub server to look for our index.html file exactly where we saved it.

Once saved, GitHub generates a custom URL (e.g., https://rahimahisah17.github.io/Git-Basics101/).
Seeing that "Your site is live" message is the ultimate green light for a developer!

git

git

Conclusion

Documentation is the bridge between writing code and building a career. A project without a README is just a folder, a project with a README is a story of your technical journey.