Cargando…

Jump Start Git, 2nd Edition /

Get a Jump Start on version control with Git today! If you've worked on a web development project of any size, you've probably used Git, the most broadly adopted distributed version control system available. It enables you to store different versions of project files and directories, so yo...

Descripción completa

Detalles Bibliográficos
Clasificación:Libro Electrónico
Autor principal: Daityari, Shaumik (Autor)
Autor Corporativo: Safari, an O'Reilly Media Company
Formato: Electrónico eBook
Idioma:Inglés
Publicado: SitePoint, 2020.
Edición:2nd edition.
Temas:
Acceso en línea:Texto completo (Requiere registro previo con correo institucional)
Tabla de Contenidos:
  • Jump Start Git, Second Edition
  • Notice of Rights
  • Notice of Liability
  • Trademark Notice
  • About SitePoint
  • About Shaumik Daityari
  • Preface
  • Who Should Read This Book?
  • Conventions Used
  • Code Samples
  • Tips, Notes, and Warnings
  • Hey, You!
  • Ahem, Excuse Me ...
  • Make Sure You Always ...
  • Watch Out!
  • Supplementary Materials
  • Chapter 1: Introduction
  • Introduction
  • Version Control
  • Version Control Doesn't Replace the Need for a Regular Backup Solution
  • Examples of Version Control in Daily Life
  • Version Control Systems: the Options
  • VCS Is Not CVS
  • Enter Git
  • Git's Philosophy
  • Advantages of Distributed Version Control Systems
  • Git and GitHub
  • Conclusion
  • What Have You Learned?
  • What's Next?
  • Chapter 2: Getting Started with Git
  • GUI Tools
  • The Git Workflow
  • Baby Steps with Git: First Commands
  • Set Configuration Settings
  • Create a Git Project
  • Issuing Git Commands
  • Git Autocomplete
  • Create Our First Commit
  • Don't Edit .git
  • Demonstration Only
  • Checking the Status
  • Beware of Adding Unwanted Files
  • Make Your Commit Messages Meaningful!
  • Further Commits with Git
  • Diff Only Shows Changes in Tracked Files
  • Beware of Shortcuts
  • Always Review Your Changes
  • Why git add Again?
  • Commit History
  • The .gitignore File
  • Unintentionally Tracking a File Listed in .gitignore
  • Hiding .gitignore from Git
  • Set up Your .gitignore Early
  • Remote Repositories
  • GitHub Isn't the Only Option
  • GitHub Offers Student Pricing
  • Conclusion
  • What Have You Learned?
  • What's Next?
  • Chapter 3: Branching in Git
  • What Are Branches?
  • Branch Conventions
  • Create a Branch
  • What Does checkout Do?
  • Delete a Branch
  • Don't Delete Branches Unless You Have To
  • Branches and HEAD
  • Advanced Branching: Merging Branches
  • Watch Out for Loops
  • Conclusion
  • What Have You Learned?
  • What's Next?
  • Chapter 4: Using Git in a Team
  • The Source Is the origin
  • Optional: Different Protocols While Cloning
  • Alternative Credential Storage
  • Git GUI Tools Can Generate Keys for You
  • Contributing to the Remote: Git Push Revisited
  • You Can Delete Branches Using git push
  • Keeping Yourself Updated with the Remote: Git Pull
  • Pulls Are Fast-forward by Default
  • Here Be Conflicts!
  • Dealing with a Rejected Git Push
  • Rebase?
  • Conflicts
  • Multiple Conflicts
  • Aborting a Merge with Conflicts
  • Conclusion
  • What Have You Learned?
  • What's Next?
  • Chapter 5: Git Workflows
  • The Centralized Workflow
  • Features
  • New Team Member Orientation
  • Pros and Cons
  • Who Should Use the Centralized Workflow
  • The Feature-branch Workflow
  • Features
  • New Team Member Orientation
  • Pros and Cons
  • Who Should Use the Feature-branch Workflow
  • Gitflow Workflow
  • Features
  • New Team Member Orientation
  • Pros and Cons
  • Who Should Use the Gitflow Workflow
  • Forking Workflow
  • Features
  • New Team Member Orientation