reklama - zainteresowany?

Git Pocket Guide. A Working Introduction - Helion

Git Pocket Guide. A Working Introduction
ebook
Autor: Richard E. Silverman
ISBN: 978-14-493-2752-1
stron: 234, Format: ebook
Data wydania: 2013-06-25
Księgarnia: Helion

Cena książki: 46,74 zł (poprzednio: 54,99 zł)
Oszczędzasz: 15% (-8,25 zł)

Dodaj do koszyka Git Pocket Guide. A Working Introduction

Tagi: Git | Programowanie

This pocket guide is the perfect on-the-job companion to Git, the distributed version control system. It provides a compact, readable introduction to Git for new users, as well as a reference to common commands and procedures for those of you with Git experience.

Written for Git version 1.8.2, this handy task-oriented guide is organized around the basic version control functions you need, such as making commits, fixing mistakes, merging, and searching history.

  • Examine the state of your project at earlier points in time
  • Learn the basics of creating and making changes to a repository
  • Create branches so many people can work on a project simultaneously
  • Merge branches and reconcile the changes among them
  • Clone an existing repository and share changes with push/pull commands
  • Examine and change your repository’s commit history
  • Access remote repositories, using different network protocols
  • Get recipes for accomplishing a variety of common tasks

Dodaj do koszyka Git Pocket Guide. A Working Introduction

 

Osoby które kupowały "Git Pocket Guide. A Working Introduction", wybierały także:

  • Java dla Å›rednio zaawansowanych. Kurs video. Tworzenie profesjonalnych projektów
  • Git. Od koncepcji do praktyki
  • Wprowadzenie do Git i GitHub. Kontrola wersji, zarz
  • Git. Kurs video. Zaawansowane aspekty konfiguracji popularnego systemu kontroli wersji
  • Tablice informatyczne. Git

Dodaj do koszyka Git Pocket Guide. A Working Introduction

Spis treści

Git Pocket Guide. A Working Introduction eBook -- spis treści

  • Git Pocket Guide
  • Preface
    • What Is Git?
    • Goals of This Book
    • Conventions Used in This Book
      • Unix
      • Shell
      • Command Syntax
      • Typography
    • Using Code Examples
    • Safari Books Online
    • How to Contact Us
    • Acknowledgments
  • 1. Understanding Git
    • Overview
      • Terminology
      • Branches
      • Sharing Work
    • The Object Store
      • Blob
      • Tree
      • Commit
        • Author versus Committer
        • Cryptographic Signature
      • Tag
    • Object IDs and SHA-1
      • Security
    • Where Objects Live
    • The Commit Graph
    • Refs
      • Related Commands
    • Branches
    • The Index
    • Merging
      • Merging Content
      • Merging History
    • Push and Pull
      • Notes
  • 2. Getting Started
    • Basic Configuration
      • Personal Identification
      • Text Editor
      • Commit ID Abbreviation
      • Pagination
      • Color
      • Cryptographic Keys
      • Command Aliases
      • Getting Help
      • References
    • Creating a New, Empty Repository
      • Selected Options
    • Importing an Existing Project
    • Ignoring Files
      • Syntax of Ignore Patterns
  • 3. Making Commits
    • Changing the Index
      • Adding a New File
      • Adding the Changes to an Existing File
      • Adding Partial Changes
      • Shortcuts
      • Removing a File
      • Renaming a File
      • Unstaging Changes
    • Making a Commit
      • Commit Messages
      • What Makes a Good Commit?
      • Shortcuts
      • Empty Directories
      • A Commit Workflow
  • 4. Undoing and Editing Commits
    • Changing the Last Commit
      • Double Oops!
    • Discarding the Last Commit
      • Discarding Any Number of Commits
    • Undoing a Commit
      • Partial Undo
    • Editing a Series of Commits
      • Conflicts
      • The exec Action
  • 5. Branching
    • The Default Branch, master
    • Making a New Branch
    • Switching Branches
      • Uncommitted Changes
        • Check Out with Merge
      • Untracked Files
      • Losing Your Head
    • Deleting a Branch
    • Renaming a Branch
  • 6. Tracking Other Repositories
    • Cloning a Repository
      • Clones and Hard Links
        • Shared Clone
      • Bare Repositories
      • Reference Repositories
    • Local, Remote, and Tracking Branches
    • Synchronization: Push and Pull
      • Pulling
      • Pushing
      • Push Defaults
      • Pull with Rebase
      • Notes
    • Access Control
  • 7. Merging
    • Merge Conflicts
      • Resolving Merge Conflicts
      • Notes
    • Details on Merging
    • Merge Tools
      • Notes
    • Custom Merge Tools
    • Merge Strategies
    • Why the Octopus?
    • Reusing Previous Merge Decisions
  • 8. Naming Commits
    • Naming Individual Commits
      • Commit ID
      • Ref Name
      • Names Relative to a Given Commit
      • Names Relative to the Reflog
      • The Upstream Branch
      • Matching a Commit Message
        • Notes
      • Following Chains
      • Addressing Pathnames
    • Naming Sets of Commits
  • 9. Viewing History
    • Command Format
    • Output Formats
    • Defining Your Own Formats
      • Notes
    • Limiting Commits to Be Shown
    • Regular Expressions
    • Reflog
    • Decoration
    • Date Style
    • Listing Changed Files
    • Showing and Following Renames or Copies
      • Detecting Copies
    • Rewriting Names and Addresses: The mailmap
      • Shortening Names
    • Searching for Changes: The pickaxe
    • Showing Diffs
      • Color
      • Word Diff
    • Comparing Branches
      • Displaying Sides
    • Showing Notes
    • Commit Ordering
    • History Simplification
    • Related Commands
      • git cherry
      • git shortlog
  • 10. Editing History
    • Rebasing
      • Undoing a Rebase
    • Importing from One Repository to Another
      • Importing Disconnected History
      • Importing Linear History
      • Importing Nonlinear History
    • Commit Surgery: git replace
      • Keeping It Real
    • The Big Hammer: git filter-branch
      • Examples
        • Expunging Files
        • Shifting to a Subdirectory
        • Updating Tags
    • Notes
  • 11. Understanding Patches
    • Applying Plain Diffs
    • Patches with Commit Information
  • 12. Remote Access
    • SSH
    • HTTP
    • Storing Your Username
    • Storing Your Password
    • References
  • 13. Miscellaneous
    • git cherry-pick
    • git notes
      • git notes Subcommands
    • git grep
      • Combining Regular Expressions
      • What to Search
      • What to Show
      • How to Match
    • git rev-parse
    • git clean
    • git stash
      • Subcommands
        • save
        • list
        • show
        • pop
        • apply
        • branch <branchname> [stash]
        • drop [stash]
        • clear
    • git show
    • git tag
      • Deleting a Tag from a Remote
      • Following Tags
      • Backdating Tags
    • git diff
      • git diff
      • git diff --staged
      • git diff <commit>
      • git diff <A> <B>
      • Options and Arguments
    • git instaweb
    • Git Hooks
    • Visual Tools
    • Submodules
  • 14. How Do I?
    • Make and Use a Central Repository?
    • Fix the Last Commit I Made?
    • Edit the Previous n Commits?
    • Undo My Last n Commits?
    • Reuse the Message from an Existing Commit?
    • Reapply an Existing Commit from Another Branch?
    • List Files with Conflicts when Merging?
    • Get a Summary of My Branches?
    • Get a Summary of My Working Tree and Index State?
    • Stage All the Current Changes to My Working Files?
    • Show the Changes to My Working Files?
    • Save and Restore My Working Tree and Index Changes?
    • Add a Downstream Branch Without Checking It Out?
    • List the Files in a Specific Commit?
    • Show the Changes Made by a Commit?
    • Get Tab Completion of Branch Names, Tags, and So On?
    • List All Remotes?
    • Change the URL for a Remote?
    • Remove Old Remote-Tracking Branches?
    • Have git log:
      • Find Commits I Made but Lost?
      • Not Show the diffs for Root Commits?
      • Show the Changes for Each Commit?
      • Show the Committer as well as the Author?
  • Index
  • About the Author
  • Copyright

Dodaj do koszyka Git Pocket Guide. A Working Introduction

Code, Publish & WebDesing by CATALIST.com.pl



(c) 2005-2024 CATALIST agencja interaktywna, znaki firmowe należą do wydawnictwa Helion S.A.