Day 26 | #90DaysOfDevOps 🚀 Today I learned how to use the GitHub CLI (gh) to manage GitHub directly from the terminal. This helps developers and DevOps engineers work faster without switching to the browser. 🔧 What I practiced today: • Installed and authenticated GitHub CLI • Created and managed repositories from the terminal • Created, viewed, and closed GitHub issues • Created and merged Pull Requests using the CLI • Explored how to view GitHub Actions workflow runs from the terminal 💡 Key Learning: GitHub CLI is very useful for automation and DevOps workflows because it allows us to manage repositories, issues, and pull requests directly from the terminal. #90DaysOfDevOps #DevOps #GitHubCLI #Git #LearningInPublic
Mastering GitHub CLI for DevOps Automation
More Relevant Posts
-
🔥 Git & GitHub — Every DevOps Engineer's Best Friend! Today I learned Git from scratch and pushed my FIRST code to GitHub! 🎊 Here's what I learned: Git = Version control tool GitHub = Cloud for your code Like Microsoft Word's "Track Changes" but 1000x more powerful! 💪 CORE WORKFLOW: git init → Start tracking a project! git status → Most used command! → See what changed! git add . → Stage all changes! git commit -m "message" → Save a snapshot! 📸 → Like a checkpoint in a video game! 🎮 git push → Upload to GitHub! ☁️ BRANCHES — Mind blowing! 🤯 git branch feature-login → Create parallel universe! git checkout feature-login → Switch to it! Work safely without breaking main code! git merge feature-login → Combine when done! ✅ 🌟 Most amazing part: Same folder! Different files! Based on which branch you are on! 🌌 Master branch = no login page Feature branch = has login page Switch branch = files appear/disappear! 🔥 Just pushed my first repo to GitHub! 🎊 Check it out: https://lnkd.in/gf8UKsHP #Git #GitHub #DevOps #AWS #LearningInPublic #CloudComputing #Fresher #TechJourney #DevOpsEngineer #VersionControl #Coding
To view or add a comment, sign in
-
🚀 Day 5 of My DevOps Journey Today, I explored how developers collaborate using GitHub — and it’s honestly impressive 👇 💡 What I learned: 🔹 "git clone" → Copy repository to local system 🔹 "git pull" → Get latest updates 🔹 "git push" → Upload changes to GitHub 🔹 Pull Request (PR) → Request to merge changes 🔥 Real-world understanding: In companies, developers don’t directly change the main code. They create branches, make changes, and submit pull requests for review. 🚀 Small win today: I cloned my repository, made changes, and pushed them back to GitHub successfully 💻 This is exactly how real DevOps workflows happen! #DevOps #GitHub #Git #LearningJourney #Collaboration #AWS
To view or add a comment, sign in
-
📘 #100DaysOfDevOps – Day 10 (GitHub – Day 1) Today I started learning Git & GitHub 🚀 GitHub is a platform used to store code, track changes, and collaborate with others. It is one of the most important tools for developers and DevOps engineers. --- 🔹 What I Learned Today 👉 What is Git? Git is a version control system used to track changes in code. 👉 What is GitHub? GitHub is a cloud platform to host and manage Git repositories. --- 🔹 Basic Commands I Practiced Initialize repository "git init" Check status "git status" Add files "git add ." Commit changes "git commit -m "First commit"" Connect to GitHub "git remote add origin <repo_url>" Push code "git push -u origin main" --- 🔹 Key Concepts • Repository (repo) • Commit (save changes) • Version control • Local vs Remote repo --- 💡 Key Learning: Git and GitHub help in tracking changes, collaboration, and managing code efficiently, which is essential in DevOps workflows. Excited to continue this journey 🚀 #100DaysOfDevOps #DevOps #Git #GitHub #LearningInPublic
To view or add a comment, sign in
-
-
You don’t need to memorize 100 Git commands. You just need to know the right workflows. Most cheat sheets are just boring lists, so I built something better: The Ultimate Git Masterlist (2026 Edition). Instead of just telling you what to type, it shows you when to type it, covering: ✅ 7 Real-world industry scenarios (like stashing dirty changes safely) ✅ The "Golden Workflow" used by top DevOps teams ✅ 72 Clickable commands that link straight to official docs I have attached the pdf below (comment if you think i should add something) #Git #SoftwareEngineering #TechCareers #CloudComputing
To view or add a comment, sign in
-
🦊 GitLab CI/CD — What I Learned 🚀 Just finished my GitLab module, and it surprised me in the best way. Coming from Jenkins, I thought GitLab would be just another CI/CD tool. But it’s actually a complete DevOps platform — everything you need in one place. Here’s what I learned: ✅ What makes GitLab different from GitHub & Bitbucket ✅ How to create and manage Projects & Groups ✅ Built pipelines using .gitlab-ci.yml ✅ Used Variables, Secrets, and Artifacts ✅ Understood Self-hosted vs SaaS Runners ✅ Deployed real projects through GitLab pipelines The most confusing part? Runners! I spent hours figuring out why my job wasn’t running — but that’s where I learned the most. 😅 What I really like is how GitLab keeps everything together — code, pipelines, and issues — no jumping between tools. Still learning, still improving, but moving forward one step at a time. 📍 Have you tried GitLab CI/CD before? What’s your favorite part? 👇 #GitLab #DevOps #CICD #Automation #LearningInPublic #BuildInPublic
To view or add a comment, sign in
-
-
Mastering Git & GitHub is a key step toward building strong DevOps foundations ⚙️💻 From initializing repositories 📁 to tracking changes 🔍, managing branches 🌿, and collaborating through remote repositories 🌐 — every step brings clarity, control, and efficiency to the development workflow 🚀 When version control is done right ✅, teams move faster ⚡, code stays organized 📌, and deployments become more reliable 📈 Strong fundamentals always lead to better execution 🔥 #DevOps #Git #GitHub #VersionControl #CloudComputing #Automation #CI_CD #SoftwareEngineering #Infrastructure #DevOpsEngineer #TechGrowth #Engineering #ITSkills #ScalableSystems #ModernDevelopment #LearnDevOps #CloudEngineer #TechCareer
To view or add a comment, sign in
-
-
Unlock the secrets of GitHub administration and unlock your development potential Discover the essential basics of GitHub administration, from user management to settings, and gain in-depth insights into its key product features EnterpriseIT VersionControl SecurityInDev DevOps TechLab Read the full article 👉 https://lnkd.in/dUWtv9wk #GitHubAdministration #EnterpriseIT #VersionControl #SecurityInDev #DevOps #TechLab Code. Learn. Build. — TechLab by Neeraj
To view or add a comment, sign in
-
🚀 Git Deep Dive — Beyond Basic Commands Git is more than just commit and push — it provides powerful capabilities to manage code efficiently in complex environments. Understanding these concepts helps in handling real-world DevOps workflows. 🔹 Key Git concepts to know: 🔸 Staging Area Acts as a middle layer between working directory and commit Allows selective changes to be committed 🔸 Commit History Tracks every change with a unique ID Helps in debugging and auditing 🔸 Branching & Merging Supports parallel development and controlled integration 🔸 Rebase vs Merge Merge preserves history Rebase creates a cleaner, linear history 🔸 Tags Used to mark important versions like releases 🔹 Common advanced operations: ✔ git stash → Temporarily save changes ✔ git cherry-pick → Apply specific commits ✔ git revert → Undo changes safely ✔ git reset → Modify commit history 💡 Key Insight: Strong Git knowledge helps teams maintain clean history, efficient collaboration, and better control over releases in DevOps workflows. #DevOps #Git #VersionControl #CICD #AWS #Azure #SoftwareEngineering
To view or add a comment, sign in
-
-
GitHub or GitLab? I hear this question all the time: “Which one should we use?” My honest answer? Both are excellent they just approach the problem differently. 🔵 GitHub It stands out because of its ecosystem and community. It’s the go-to platform for open source, collaboration, and developer experience. With GitHub Actions, automation is powerful and flexible especially if you like building things step by step. 🟠 GitLab More opinionated. More “all-in-one.” Code, CI/CD, security scanning, artifacts, deployments everything lives in one place. Great if you want a single platform that covers the full DevOps lifecycle out of the box. The real difference isn’t the tool. 👉 It’s the mindset. GitHub fits teams that value flexibility and ecosystem. GitLab fits teams that want an integrated DevOps platform. Both can scale. Both can be secure. Both can power production systems. The real question is: Which one fits your team, your culture, and the way you work? Are you more GitHub or GitLab and why? #DevOps #Git #CICD #Engineering #GitHub #GitLab
To view or add a comment, sign in
-
-
𝗚𝗶𝘁 𝗕𝗿𝗮𝗻𝗰𝗵𝗶𝗻𝗴 𝗦𝘁𝗿𝗮𝘁𝗲𝗴𝗶𝗲𝘀 𝗠𝗮𝗶𝗻 𝗼𝗿 𝗧𝗿𝘂𝗻𝗸-𝗕𝗮𝘀𝗲𝗱 𝗗𝗲𝘃𝗲𝗹𝗼𝗽𝗺𝗲𝗻𝘁: Everyone commits directly to one main branch with small, frequent updates. Simple to follow, but it needs a lot of discipline from every single person on the team. 𝗙𝗲𝗮𝘁𝘂𝗿𝗲 𝗕𝗿𝗮𝗻𝗰𝗵𝗶𝗻𝗴: Every feature gets its own separate branch. Once the work is done, it gets merged back to main. Very easy to manage and track, and honestly the most commonly used approach in most teams I have seen. 𝗚𝗶𝘁 𝗙𝗹𝗼𝘄: This one has dedicated branches for everything, main, develop, feature, release, hotfix. Slightly more process-heavy but very useful once your project or team starts growing. 𝗥𝗲𝗹𝗲𝗮𝘀𝗲 𝗕𝗿𝗮𝗻𝗰𝗵𝗶𝗻𝗴: A separate branch is created for each release and all bug fixes are handled there before anything goes live. Very helpful when you want stable and controlled deployments. One thing I genuinely realised after all this is that there is no perfect branching strategy that works for everyone. It completely depends on your team size, your project, and how frequently you are shipping things. #copado #githubactions #DevOps #Git #GitHub #CICD #VersionControl #CloudComputing #Docker #Kubernetes #AWS #Automation #LearningDevOps #DevOpsTips
To view or add a comment, sign in
-
Explore related topics
Explore content categories
- Career
- Productivity
- Finance
- Soft Skills & Emotional Intelligence
- Project Management
- Education
- Technology
- Leadership
- Ecommerce
- User Experience
- Recruitment & HR
- Customer Experience
- Real Estate
- Marketing
- Sales
- Retail & Merchandising
- Science
- Supply Chain Management
- Future Of Work
- Consulting
- Writing
- Economics
- Artificial Intelligence
- Employee Experience
- Workplace Trends
- Fundraising
- Networking
- Corporate Social Responsibility
- Negotiation
- Communication
- Engineering
- Hospitality & Tourism
- Business Strategy
- Change Management
- Organizational Culture
- Design
- Innovation
- Event Planning
- Training & Development