Git Pocket Guide. A Working Introduction - Helion
ebook
Autor: Richard E. SilvermanISBN: 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ł)
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
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 119,00 zł, (53,55 zł -55%)
- Git. Od koncepcji do praktyki 39,90 zł, (19,95 zł -50%)
- Wprowadzenie do Git i GitHub. Kontrola wersji, zarz 69,00 zł, (34,50 zł -50%)
- Git. Kurs video. Zaawansowane aspekty konfiguracji popularnego systemu kontroli wersji 129,00 zł, (64,50 zł -50%)
- Tablice informatyczne. Git 17,44 zł, (8,72 zł -50%)
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
- Overview
- 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
- Basic Configuration
- 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
- Changing the Index
- 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
- Changing the Last Commit
- 5. Branching
- The Default Branch, master
- Making a New Branch
- Switching Branches
- Uncommitted Changes
- Check Out with Merge
- Untracked Files
- Losing Your Head
- Uncommitted Changes
- Deleting a Branch
- Renaming a Branch
- 6. Tracking Other Repositories
- Cloning a Repository
- Clones and Hard Links
- Shared Clone
- Bare Repositories
- Reference Repositories
- Clones and Hard Links
- Local, Remote, and Tracking Branches
- Synchronization: Push and Pull
- Pulling
- Pushing
- Push Defaults
- Pull with Rebase
- Notes
- Access Control
- Cloning a Repository
- 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
- Merge Conflicts
- 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
- Naming Individual 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
- Examples
- Notes
- Rebasing
- 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
- Subcommands
- 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