Search icon CANCEL
Subscription
0
Cart icon
Your Cart (0 item)
Close icon
You have no products in your basket yet
Save more on your purchases now! discount-offer-chevron-icon
Savings automatically calculated. No voucher code required.
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Conferences
Free Learning
Arrow right icon
Arrow up icon
GO TO TOP
DevOps Unleashed with Git and GitHub

You're reading from   DevOps Unleashed with Git and GitHub Automate, collaborate, and innovate to enhance your DevOps workflow and development experience

Arrow left icon
Product type Paperback
Published in Apr 2024
Publisher Packt
ISBN-13 9781835463710
Length 284 pages
Edition 1st Edition
Tools
Concepts
Arrow right icon
Author (1):
Arrow left icon
Yuki Hattori Yuki Hattori
Author Profile Icon Yuki Hattori
Yuki Hattori
Arrow right icon
View More author details
Toc

Table of Contents (14) Chapters Close

Preface 1. Part 1: Foundations of Git, GitHub, and DevOps
2. Chapter 1: DevOps and Developer Experience – Entering the World of Modern Development FREE CHAPTER 3. Chapter 2: Getting Started with Git 4. Chapter 3: Advanced Git Usage for Team Collaboration 5. Part 2: GitHub Excellence and CI/CD Fundamentals
6. Chapter 4: Elevating Team Collaboration with GitHub 7. Chapter 5: Driving CI/CD with GitHub 8. Part 3: Beyond DevOps
9. Chapter 6: Enriching DevOps Implementation 10. Chapter 7: Accelerate Productivity with AI 11. Chapter 8: Reflection and Conclusion 12. Index 13. Other Books You May Enjoy

Getting started with Git

In this section, we will proceed with how to use Git, assuming a scenario where you are working in an individual environment and simply building up a history.

Git basics – Begin with a hands-on experience

Before we delve into the details, let’s start with some hands-on experience. It is likely easier to grasp the concept by trying it out rather than just only reading about it at first.

git config – Introduce yourself to Git

Now, there is something you need to do before you start a project. Introduce yourself to Git. To introduce yourself to Git, use the git config command:

$ git config --global user.name "John Doe"
$ git config --global user.email "john@example.com"

git config is a command used to set Git configurations at the levels of system, user, and repository. The level system applies to all users and all repositories. The level global applies to all repositories of a specific user. The level local...

lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at $19.99/month. Cancel anytime