Git version control cookbook :: leverage version control to transform your development workflow and boost productivity /
A series of practical recipes to simplify the Git learning experience and increase your productivity when using Git version control Key Features Explore practical recipes to use Git's most advanced features Learn how Git references its objects and how history is recorded Use reflog and git fsck...
Gespeichert in:
Hauptverfasser: | , , , |
---|---|
Format: | Elektronisch E-Book |
Sprache: | English |
Veröffentlicht: |
Birmingham, UK :
Packt Publishing,
2018.
|
Ausgabe: | Second edition. |
Schlagworte: | |
Online-Zugang: | Volltext |
Zusammenfassung: | A series of practical recipes to simplify the Git learning experience and increase your productivity when using Git version control Key Features Explore practical recipes to use Git's most advanced features Learn how Git references its objects and how history is recorded Use reflog and git fsck to recover lost information Book Description Git is one of the most popular tools for versioning. Git Version Control Cookbook builds on the success of the previous edition and provides you with an up-to-date guide to solving problems related to versioning. You'll start by learning about the Git data model and how it stores files and looks at commits. By using simple commands, you'll learn how to navigate through the database. Once you have accustomed yourself to the basics, you'll explore techniques to configure Git with comprehensive examples and configuration targets. You'll gain insights into improving your understanding of branches and recovery from mistakes -- right from committing to a wrong branch to recovering lost commits or files. You'll then move on to discovering the features that Git rebase has to offer and use regular Git merge on other branches. You'll explore Git notes and learn how to utilize the update, list, and search commands. In addition to this, you'll learn how to extract metadata from repositories and automate your daily tasks using Git hooks. You'll then study in detail repository maintenance, patching, and offline sharing. By the end of the book, you'll have grasped various tips and tricks for everyday usage, while increasing your knowledge of Git providers, integrations, and clients. What you will learn Understand the Git data model and use commands to navigate the database Find out how you can recover lost commits or files Force a rebase on some branches and use regular Git to merge on the rest Master the techniques required to extract metadata from repositories Explore Git notes and learn about the various features that it offers See how to decode different subcommands Who this book is for The Git Version Control Cookbook is for you if you are a developer or Build Release manager looking for a full-fledged practical guide that will take your Git knowledge to the next level. Basic knowledge of GNU tools and shell or bash scripting is needed. Downloading the example code for this book You can download the example code files for all Packt books you have purchased from your account at http://www.PacktPub.com. If you purchased t... |
Beschreibung: | Previous edition published: 2014. |
Beschreibung: | 1 online resource (1 volume) : illustrations |
ISBN: | 9781789136944 1789136946 |
Internformat
MARC
LEADER | 00000cam a2200000 i 4500 | ||
---|---|---|---|
001 | ZDB-4-EBA-on1050953483 | ||
003 | OCoLC | ||
005 | 20241004212047.0 | ||
006 | m o d | ||
007 | cr cnu---unuuu | ||
008 | 180906s2018 enka o 000 0 eng d | ||
040 | |a UMI |b eng |e rda |e pn |c UMI |d YDX |d TEFOD |d OCLCF |d STF |d CEF |d UKMGB |d G3B |d UAB |d UKAHL |d CZL |d OCLCO |d NZAUC |d N$T |d OCLCQ |d OCLCO |d OCLCL |d OCLCQ |d DXU | ||
015 | |a GBB8E1701 |2 bnb | ||
016 | 7 | |a 018995549 |2 Uk | |
019 | |a 1048949757 | ||
020 | |a 9781789136944 |q (electronic bk.) | ||
020 | |a 1789136946 | ||
020 | |z 9781789137545 | ||
020 | |z 1789137543 | ||
035 | |a (OCoLC)1050953483 |z (OCoLC)1048949757 | ||
050 | 4 | |a QA76.758 | |
082 | 7 | |a 005.3 |2 23 | |
049 | |a MAIN | ||
100 | 1 | |a Geisshirt, Kenneth, |e author. | |
245 | 1 | 0 | |a Git version control cookbook : |b leverage version control to transform your development workflow and boost productivity / |c Kenneth Geisshirt, Emanuele Zattin, Aske Olsson, Rasmus Voss. |
250 | |a Second edition. | ||
264 | 1 | |a Birmingham, UK : |b Packt Publishing, |c 2018. | |
300 | |a 1 online resource (1 volume) : |b illustrations | ||
336 | |a text |b txt |2 rdacontent | ||
337 | |a computer |b c |2 rdamedia | ||
338 | |a online resource |b cr |2 rdacarrier | ||
588 | |a Description based on online resource; title from title page (Safari, viewed August 30, 2018). | ||
500 | |a Previous edition published: 2014. | ||
520 | |a A series of practical recipes to simplify the Git learning experience and increase your productivity when using Git version control Key Features Explore practical recipes to use Git's most advanced features Learn how Git references its objects and how history is recorded Use reflog and git fsck to recover lost information Book Description Git is one of the most popular tools for versioning. Git Version Control Cookbook builds on the success of the previous edition and provides you with an up-to-date guide to solving problems related to versioning. You'll start by learning about the Git data model and how it stores files and looks at commits. By using simple commands, you'll learn how to navigate through the database. Once you have accustomed yourself to the basics, you'll explore techniques to configure Git with comprehensive examples and configuration targets. You'll gain insights into improving your understanding of branches and recovery from mistakes -- right from committing to a wrong branch to recovering lost commits or files. You'll then move on to discovering the features that Git rebase has to offer and use regular Git merge on other branches. You'll explore Git notes and learn how to utilize the update, list, and search commands. In addition to this, you'll learn how to extract metadata from repositories and automate your daily tasks using Git hooks. You'll then study in detail repository maintenance, patching, and offline sharing. By the end of the book, you'll have grasped various tips and tricks for everyday usage, while increasing your knowledge of Git providers, integrations, and clients. What you will learn Understand the Git data model and use commands to navigate the database Find out how you can recover lost commits or files Force a rebase on some branches and use regular Git to merge on the rest Master the techniques required to extract metadata from repositories Explore Git notes and learn about the various features that it offers See how to decode different subcommands Who this book is for The Git Version Control Cookbook is for you if you are a developer or Build Release manager looking for a full-fledged practical guide that will take your Git knowledge to the next level. Basic knowledge of GNU tools and shell or bash scripting is needed. Downloading the example code for this book You can download the example code files for all Packt books you have purchased from your account at http://www.PacktPub.com. If you purchased t... | ||
588 | 0 | |a Print version record. | |
505 | 0 | |a Cover -- Title Page -- Copyright and Credits -- Packt Upsell -- Contributors -- Table of Contents -- Preface -- Chapter 1: Navigating Git -- Introduction -- Git's objects -- Getting ready -- How to do it... -- The commit object -- The tree object -- The blob object -- The branch object -- The tag object -- How it works... -- There's more... -- The three stages -- Getting ready -- How to do it... -- How it works... -- See also -- Viewing the DAG -- Getting ready -- How to do it... -- How it works... -- Extracting fixed issues -- Getting ready -- How to do it... -- How it works... -- There's more... -- Getting a list of the changed files -- Getting ready -- How to do it... -- How it works... -- There's more... -- See also -- Viewing the history with gitk -- Getting ready -- How to do it... -- How it works... -- There's more... -- Finding commits in the history -- Getting ready -- How to do it... -- How it works... -- There's more... -- Searching through the history code -- Getting ready -- How to do it... -- How it works... -- There's more... -- Chapter 2: Configuration -- Introduction -- Configuration targets -- Getting ready -- How to do it... -- How it works... -- There's more... -- Querying the existing configuration -- Getting ready -- How to do it... -- How it works... -- There's more... -- Templates -- Getting ready -- How to do it... -- How it works... -- A .git directory template -- Getting ready -- How to do it... -- How it works... -- See also -- A few configuration examples -- Getting ready -- How to do it... -- Rebase and merge setup -- Expiry of objects -- Autocorrect -- How it works... -- There's more... -- Git aliases -- Getting ready -- How to do it... -- How it works... -- There's more... -- The refspec exemplified -- Getting ready -- How to do it... -- How it works... -- Chapter 3: Branching, Merging, and Options -- Introduction. | |
505 | 8 | |a Managing your local branches -- Getting ready -- How to do it... -- How it works... -- There's more... -- Branches with remotes -- Getting ready -- How to do it... -- There's more... -- Forcing a merge commit -- Getting ready -- How to do it... -- There's more... -- Using git reuse recorded resolution (rerere) to merge Git conflicts -- How to do it... -- There's more... -- Compute the difference between branches -- Getting ready -- How to do it... -- Orphan branches -- Getting ready -- How to do it... -- There's more... -- Chapter 4: Rebasing Regularly and Interactively, and Other Use Cases -- Introduction -- Rebasing commits to another branch -- Getting ready -- How to do it... -- How it works... -- Continuing a rebase with merge conflicts -- How to do it... -- How it works... -- There's more... -- Rebasing selected commits interactively -- Getting ready -- How to do it... -- There's more... -- Squashing commits using an interactive rebase -- Getting ready -- How to do it... -- There's more... -- Changing the author of commits using a rebase -- Getting ready -- How to do it... -- How it works... -- Autosquashing commits -- Getting ready -- How to do it... -- There's more... -- Chapter 5: Storing Additional Information in Your Repository -- Introduction -- Adding your first Git note -- Getting ready -- How to do it... -- There's more... -- Separating notes by category -- Getting ready -- How to do it... -- How it works... -- Retrieving notes from the remote repository -- Getting ready -- How to do it... -- How it works... -- Pushing Git notes to a remote repository -- How to do it... -- There's more... -- Tagging commits in the repository -- Getting ready -- How to do it... -- There's more... -- Chapter 6: Extracting Data from the Repository -- Introduction -- Extracting the top contributor -- Getting ready -- How to do it... -- There's more. | |
505 | 8 | |a Finding bottlenecks in the source tree -- Getting ready -- How to do it... -- There's more... -- Grepping the commit messages -- Getting ready -- How to do it... -- The contents of the releases -- How to do it... -- How it works... -- Finding what has been achieved in the repository in the last period -- How to do it... -- How it works... -- There's more... -- Chapter 7: Enhancing Your Daily Work with Git Hooks, Aliases, and Scripts -- Introduction -- Using a branch description in a commit message -- Getting ready -- How to do it... -- Creating a dynamic commit message template -- Getting ready -- How to do it... -- There's more... -- Using external information in a commit message -- Getting ready -- How to do it... -- Preventing the push of specific commits -- Getting ready -- How to do it... -- There's more... -- Configuring and using Git aliases -- How to do it... -- How it works... -- Configuring and using Git scripts -- How to do it... -- Setting up and using a commit template -- Getting ready -- How to do it... -- Chapter 8: Recovering from Mistakes -- Introduction -- Undo -- Remove a commit completely -- Getting ready -- How to do it... -- How it works... -- Undo -- Remove a commit and retain changes to files -- Getting ready -- How to do it... -- How it works... -- Undo -- Remove a commit and retain changes in the staging area -- Getting ready -- How to do it... -- How it works... -- Undo -- Working with a dirty area -- Getting ready -- How to do it... -- How it works... -- Redo -- Recreate the latest commit with new changes -- Getting ready -- How to do it... -- How it works... -- There's more... -- Revert -- Undo the changes introduced by a commit -- Getting ready -- How to do it... -- How it works... -- There's more... -- Reverting a merge -- Getting ready -- How to do it... -- How it works... -- There's more... -- See also. | |
505 | 8 | |a Viewing past Git actions with git reflog -- Getting ready -- How to do it... -- How it works... -- Finding lost changes with git fsck -- Getting ready -- How to do it... -- How it works... -- Chapter 9: Repository Maintenance -- Introduction -- Pruning remote branches -- Getting ready -- How to do it... -- How it works... -- There's more... -- Running garbage collection manually -- Getting ready -- How to do it... -- How it works... -- Turning off automatic garbage collection -- Getting ready -- How to do it... -- Splitting a repository -- Getting ready -- How to do it... -- How it works... -- There's more... -- Rewriting history -- changing a single file -- Getting ready -- How to do it... -- How it works... -- Creating a backup of your repositories as mirror repositories -- Getting ready -- How to do it... -- How it works... -- There's more... -- A quick "how-to" submodule -- Getting ready -- How to do it... -- There's more... -- Subtree merging -- Getting ready -- How to do it... -- How it works... -- See also -- Submodule versus subtree merging -- Chapter 10: Patching and Offline Sharing -- Introduction -- Creating patches -- Getting ready -- How to do it... -- How it works... -- There's more... -- Creating patches from branches -- Getting ready -- How to do it... -- How it works... -- There's more... -- Applying patches -- Getting ready -- How to do it... -- How it works... -- There's more... -- Sending patches -- Getting ready -- How to do it... -- How it works... -- There's more... -- Creating Git bundles -- Getting ready -- How to do it... -- How it works... -- Using a Git bundle -- Getting ready -- How to do it... -- There's more... -- Creating archives from a tree -- Getting ready -- How to do it... -- There's more... -- Chapter 11: Tips and Tricks -- Introduction -- Using git stash -- Getting ready -- How to do it... -- How it works. | |
505 | 8 | |a There's more... -- Saving and applying stashes -- Getting ready -- How to do it... -- There's more... -- Debugging with git bisect -- Getting ready -- How to do it... -- There's more... -- Using the blame command -- Getting ready -- How to do it... -- There's more... -- Coloring the UI in the prompt -- Getting ready -- How to do it... -- There's more... -- Autocompletion -- Getting ready -- Linux -- Mac -- Windows -- How to do it... -- How it works... -- There's more... -- Bash prompt with status information -- Getting ready -- How to do it... -- How it works... -- There's more... -- See also -- More aliases -- Getting ready -- How to do it... -- Interactive add -- Getting ready -- How to do it... -- There's more... -- Interactive add with Git gui -- Getting ready -- How to do it... -- Ignoring files -- Getting ready -- How to do it... -- There's more... -- See also -- Showing and cleaning ignored files -- Getting ready -- How to do it... -- There's more... -- Chapter 12: Git Providers, Integrations, and Clients -- Introduction -- Setting up an organization at GitHub -- Getting ready -- How to do it... -- How it works... -- There's more... -- See also -- Creating a repository at GitHub -- Getting ready -- How to do it... -- How it works... -- There's more... -- Adding templates for issues and pull requests -- Getting ready -- How to do it... -- How it works... -- Creating a GitHub API key -- Getting ready -- How to do it... -- How it works... -- See also -- Using GitHub to authenticate at Jenkins -- Getting ready -- How to do it... -- How it works... -- There's more... -- See also -- Triggering Jenkins builds -- Getting ready -- How to do it... -- How it works... -- There's more... -- See also -- Using Jenkinsfiles -- Getting ready -- How to do it... -- How it works... -- There's more... -- See also -- Other Books You May Enjoy -- Index. | |
630 | 0 | 0 | |a Git (Computer file) |0 http://id.loc.gov/authorities/names/n2013035657 |
630 | 0 | 7 | |a Git (Computer file) |2 fast |
650 | 0 | |a Software engineering. |0 http://id.loc.gov/authorities/subjects/sh87007398 | |
650 | 0 | |a Open source software. |0 http://id.loc.gov/authorities/subjects/sh99003437 | |
650 | 6 | |a Génie logiciel. | |
650 | 6 | |a Logiciels libres. | |
650 | 7 | |a Open source software |2 fast | |
650 | 7 | |a Software engineering |2 fast | |
700 | 1 | |a Olsson, Aske, |e author. | |
700 | 1 | |a Voss, Rasmus, |e author. | |
700 | 1 | |a Zattin, Emanuele, |e author. | |
758 | |i has work: |a Git version control cookbook (Text) |1 https://id.oclc.org/worldcat/entity/E39PCG4t7CF3hmf3HY6jcp7DYP |4 https://id.oclc.org/worldcat/ontology/hasWork | ||
776 | 0 | 8 | |i Print version: |a Geisshirt, Kenneth. |t Git version control cookbook. |b Second edition. |d Birmingham, UK : Packt Publishing, 2018 |z 9781789136944 |w (OCoLC)1039938039 |
856 | 4 | 0 | |l FWS01 |p ZDB-4-EBA |q FWS_PDA_EBA |u https://search.ebscohost.com/login.aspx?direct=true&scope=site&db=nlebk&AN=1857164 |3 Volltext |
938 | |a Askews and Holts Library Services |b ASKH |n BDZ0037623550 | ||
938 | |a YBP Library Services |b YANK |n 15644348 | ||
938 | |a EBSCOhost |b EBSC |n 1857164 | ||
994 | |a 92 |b GEBAY | ||
912 | |a ZDB-4-EBA | ||
049 | |a DE-863 |
Datensatz im Suchindex
DE-BY-FWS_katkey | ZDB-4-EBA-on1050953483 |
---|---|
_version_ | 1816882470585368576 |
adam_text | |
any_adam_object | |
author | Geisshirt, Kenneth Olsson, Aske Voss, Rasmus Zattin, Emanuele |
author_facet | Geisshirt, Kenneth Olsson, Aske Voss, Rasmus Zattin, Emanuele |
author_role | aut aut aut aut |
author_sort | Geisshirt, Kenneth |
author_variant | k g kg a o ao r v rv e z ez |
building | Verbundindex |
bvnumber | localFWS |
callnumber-first | Q - Science |
callnumber-label | QA76 |
callnumber-raw | QA76.758 |
callnumber-search | QA76.758 |
callnumber-sort | QA 276.758 |
callnumber-subject | QA - Mathematics |
collection | ZDB-4-EBA |
contents | Cover -- Title Page -- Copyright and Credits -- Packt Upsell -- Contributors -- Table of Contents -- Preface -- Chapter 1: Navigating Git -- Introduction -- Git's objects -- Getting ready -- How to do it... -- The commit object -- The tree object -- The blob object -- The branch object -- The tag object -- How it works... -- There's more... -- The three stages -- Getting ready -- How to do it... -- How it works... -- See also -- Viewing the DAG -- Getting ready -- How to do it... -- How it works... -- Extracting fixed issues -- Getting ready -- How to do it... -- How it works... -- There's more... -- Getting a list of the changed files -- Getting ready -- How to do it... -- How it works... -- There's more... -- See also -- Viewing the history with gitk -- Getting ready -- How to do it... -- How it works... -- There's more... -- Finding commits in the history -- Getting ready -- How to do it... -- How it works... -- There's more... -- Searching through the history code -- Getting ready -- How to do it... -- How it works... -- There's more... -- Chapter 2: Configuration -- Introduction -- Configuration targets -- Getting ready -- How to do it... -- How it works... -- There's more... -- Querying the existing configuration -- Getting ready -- How to do it... -- How it works... -- There's more... -- Templates -- Getting ready -- How to do it... -- How it works... -- A .git directory template -- Getting ready -- How to do it... -- How it works... -- See also -- A few configuration examples -- Getting ready -- How to do it... -- Rebase and merge setup -- Expiry of objects -- Autocorrect -- How it works... -- There's more... -- Git aliases -- Getting ready -- How to do it... -- How it works... -- There's more... -- The refspec exemplified -- Getting ready -- How to do it... -- How it works... -- Chapter 3: Branching, Merging, and Options -- Introduction. Managing your local branches -- Getting ready -- How to do it... -- How it works... -- There's more... -- Branches with remotes -- Getting ready -- How to do it... -- There's more... -- Forcing a merge commit -- Getting ready -- How to do it... -- There's more... -- Using git reuse recorded resolution (rerere) to merge Git conflicts -- How to do it... -- There's more... -- Compute the difference between branches -- Getting ready -- How to do it... -- Orphan branches -- Getting ready -- How to do it... -- There's more... -- Chapter 4: Rebasing Regularly and Interactively, and Other Use Cases -- Introduction -- Rebasing commits to another branch -- Getting ready -- How to do it... -- How it works... -- Continuing a rebase with merge conflicts -- How to do it... -- How it works... -- There's more... -- Rebasing selected commits interactively -- Getting ready -- How to do it... -- There's more... -- Squashing commits using an interactive rebase -- Getting ready -- How to do it... -- There's more... -- Changing the author of commits using a rebase -- Getting ready -- How to do it... -- How it works... -- Autosquashing commits -- Getting ready -- How to do it... -- There's more... -- Chapter 5: Storing Additional Information in Your Repository -- Introduction -- Adding your first Git note -- Getting ready -- How to do it... -- There's more... -- Separating notes by category -- Getting ready -- How to do it... -- How it works... -- Retrieving notes from the remote repository -- Getting ready -- How to do it... -- How it works... -- Pushing Git notes to a remote repository -- How to do it... -- There's more... -- Tagging commits in the repository -- Getting ready -- How to do it... -- There's more... -- Chapter 6: Extracting Data from the Repository -- Introduction -- Extracting the top contributor -- Getting ready -- How to do it... -- There's more. Finding bottlenecks in the source tree -- Getting ready -- How to do it... -- There's more... -- Grepping the commit messages -- Getting ready -- How to do it... -- The contents of the releases -- How to do it... -- How it works... -- Finding what has been achieved in the repository in the last period -- How to do it... -- How it works... -- There's more... -- Chapter 7: Enhancing Your Daily Work with Git Hooks, Aliases, and Scripts -- Introduction -- Using a branch description in a commit message -- Getting ready -- How to do it... -- Creating a dynamic commit message template -- Getting ready -- How to do it... -- There's more... -- Using external information in a commit message -- Getting ready -- How to do it... -- Preventing the push of specific commits -- Getting ready -- How to do it... -- There's more... -- Configuring and using Git aliases -- How to do it... -- How it works... -- Configuring and using Git scripts -- How to do it... -- Setting up and using a commit template -- Getting ready -- How to do it... -- Chapter 8: Recovering from Mistakes -- Introduction -- Undo -- Remove a commit completely -- Getting ready -- How to do it... -- How it works... -- Undo -- Remove a commit and retain changes to files -- Getting ready -- How to do it... -- How it works... -- Undo -- Remove a commit and retain changes in the staging area -- Getting ready -- How to do it... -- How it works... -- Undo -- Working with a dirty area -- Getting ready -- How to do it... -- How it works... -- Redo -- Recreate the latest commit with new changes -- Getting ready -- How to do it... -- How it works... -- There's more... -- Revert -- Undo the changes introduced by a commit -- Getting ready -- How to do it... -- How it works... -- There's more... -- Reverting a merge -- Getting ready -- How to do it... -- How it works... -- There's more... -- See also. Viewing past Git actions with git reflog -- Getting ready -- How to do it... -- How it works... -- Finding lost changes with git fsck -- Getting ready -- How to do it... -- How it works... -- Chapter 9: Repository Maintenance -- Introduction -- Pruning remote branches -- Getting ready -- How to do it... -- How it works... -- There's more... -- Running garbage collection manually -- Getting ready -- How to do it... -- How it works... -- Turning off automatic garbage collection -- Getting ready -- How to do it... -- Splitting a repository -- Getting ready -- How to do it... -- How it works... -- There's more... -- Rewriting history -- changing a single file -- Getting ready -- How to do it... -- How it works... -- Creating a backup of your repositories as mirror repositories -- Getting ready -- How to do it... -- How it works... -- There's more... -- A quick "how-to" submodule -- Getting ready -- How to do it... -- There's more... -- Subtree merging -- Getting ready -- How to do it... -- How it works... -- See also -- Submodule versus subtree merging -- Chapter 10: Patching and Offline Sharing -- Introduction -- Creating patches -- Getting ready -- How to do it... -- How it works... -- There's more... -- Creating patches from branches -- Getting ready -- How to do it... -- How it works... -- There's more... -- Applying patches -- Getting ready -- How to do it... -- How it works... -- There's more... -- Sending patches -- Getting ready -- How to do it... -- How it works... -- There's more... -- Creating Git bundles -- Getting ready -- How to do it... -- How it works... -- Using a Git bundle -- Getting ready -- How to do it... -- There's more... -- Creating archives from a tree -- Getting ready -- How to do it... -- There's more... -- Chapter 11: Tips and Tricks -- Introduction -- Using git stash -- Getting ready -- How to do it... -- How it works. There's more... -- Saving and applying stashes -- Getting ready -- How to do it... -- There's more... -- Debugging with git bisect -- Getting ready -- How to do it... -- There's more... -- Using the blame command -- Getting ready -- How to do it... -- There's more... -- Coloring the UI in the prompt -- Getting ready -- How to do it... -- There's more... -- Autocompletion -- Getting ready -- Linux -- Mac -- Windows -- How to do it... -- How it works... -- There's more... -- Bash prompt with status information -- Getting ready -- How to do it... -- How it works... -- There's more... -- See also -- More aliases -- Getting ready -- How to do it... -- Interactive add -- Getting ready -- How to do it... -- There's more... -- Interactive add with Git gui -- Getting ready -- How to do it... -- Ignoring files -- Getting ready -- How to do it... -- There's more... -- See also -- Showing and cleaning ignored files -- Getting ready -- How to do it... -- There's more... -- Chapter 12: Git Providers, Integrations, and Clients -- Introduction -- Setting up an organization at GitHub -- Getting ready -- How to do it... -- How it works... -- There's more... -- See also -- Creating a repository at GitHub -- Getting ready -- How to do it... -- How it works... -- There's more... -- Adding templates for issues and pull requests -- Getting ready -- How to do it... -- How it works... -- Creating a GitHub API key -- Getting ready -- How to do it... -- How it works... -- See also -- Using GitHub to authenticate at Jenkins -- Getting ready -- How to do it... -- How it works... -- There's more... -- See also -- Triggering Jenkins builds -- Getting ready -- How to do it... -- How it works... -- There's more... -- See also -- Using Jenkinsfiles -- Getting ready -- How to do it... -- How it works... -- There's more... -- See also -- Other Books You May Enjoy -- Index. |
ctrlnum | (OCoLC)1050953483 |
dewey-full | 005.3 |
dewey-hundreds | 000 - Computer science, information, general works |
dewey-ones | 005 - Computer programming, programs, data, security |
dewey-raw | 005.3 |
dewey-search | 005.3 |
dewey-sort | 15.3 |
dewey-tens | 000 - Computer science, information, general works |
discipline | Informatik |
edition | Second edition. |
format | Electronic eBook |
fullrecord | <?xml version="1.0" encoding="UTF-8"?><collection xmlns="http://www.loc.gov/MARC21/slim"><record><leader>14599cam a2200661 i 4500</leader><controlfield tag="001">ZDB-4-EBA-on1050953483</controlfield><controlfield tag="003">OCoLC</controlfield><controlfield tag="005">20241004212047.0</controlfield><controlfield tag="006">m o d </controlfield><controlfield tag="007">cr cnu---unuuu</controlfield><controlfield tag="008">180906s2018 enka o 000 0 eng d</controlfield><datafield tag="040" ind1=" " ind2=" "><subfield code="a">UMI</subfield><subfield code="b">eng</subfield><subfield code="e">rda</subfield><subfield code="e">pn</subfield><subfield code="c">UMI</subfield><subfield code="d">YDX</subfield><subfield code="d">TEFOD</subfield><subfield code="d">OCLCF</subfield><subfield code="d">STF</subfield><subfield code="d">CEF</subfield><subfield code="d">UKMGB</subfield><subfield code="d">G3B</subfield><subfield code="d">UAB</subfield><subfield code="d">UKAHL</subfield><subfield code="d">CZL</subfield><subfield code="d">OCLCO</subfield><subfield code="d">NZAUC</subfield><subfield code="d">N$T</subfield><subfield code="d">OCLCQ</subfield><subfield code="d">OCLCO</subfield><subfield code="d">OCLCL</subfield><subfield code="d">OCLCQ</subfield><subfield code="d">DXU</subfield></datafield><datafield tag="015" ind1=" " ind2=" "><subfield code="a">GBB8E1701</subfield><subfield code="2">bnb</subfield></datafield><datafield tag="016" ind1="7" ind2=" "><subfield code="a">018995549</subfield><subfield code="2">Uk</subfield></datafield><datafield tag="019" ind1=" " ind2=" "><subfield code="a">1048949757</subfield></datafield><datafield tag="020" ind1=" " ind2=" "><subfield code="a">9781789136944</subfield><subfield code="q">(electronic bk.)</subfield></datafield><datafield tag="020" ind1=" " ind2=" "><subfield code="a">1789136946</subfield></datafield><datafield tag="020" ind1=" " ind2=" "><subfield code="z">9781789137545</subfield></datafield><datafield tag="020" ind1=" " ind2=" "><subfield code="z">1789137543</subfield></datafield><datafield tag="035" ind1=" " ind2=" "><subfield code="a">(OCoLC)1050953483</subfield><subfield code="z">(OCoLC)1048949757</subfield></datafield><datafield tag="050" ind1=" " ind2="4"><subfield code="a">QA76.758</subfield></datafield><datafield tag="082" ind1="7" ind2=" "><subfield code="a">005.3</subfield><subfield code="2">23</subfield></datafield><datafield tag="049" ind1=" " ind2=" "><subfield code="a">MAIN</subfield></datafield><datafield tag="100" ind1="1" ind2=" "><subfield code="a">Geisshirt, Kenneth,</subfield><subfield code="e">author.</subfield></datafield><datafield tag="245" ind1="1" ind2="0"><subfield code="a">Git version control cookbook :</subfield><subfield code="b">leverage version control to transform your development workflow and boost productivity /</subfield><subfield code="c">Kenneth Geisshirt, Emanuele Zattin, Aske Olsson, Rasmus Voss.</subfield></datafield><datafield tag="250" ind1=" " ind2=" "><subfield code="a">Second edition.</subfield></datafield><datafield tag="264" ind1=" " ind2="1"><subfield code="a">Birmingham, UK :</subfield><subfield code="b">Packt Publishing,</subfield><subfield code="c">2018.</subfield></datafield><datafield tag="300" ind1=" " ind2=" "><subfield code="a">1 online resource (1 volume) :</subfield><subfield code="b">illustrations</subfield></datafield><datafield tag="336" ind1=" " ind2=" "><subfield code="a">text</subfield><subfield code="b">txt</subfield><subfield code="2">rdacontent</subfield></datafield><datafield tag="337" ind1=" " ind2=" "><subfield code="a">computer</subfield><subfield code="b">c</subfield><subfield code="2">rdamedia</subfield></datafield><datafield tag="338" ind1=" " ind2=" "><subfield code="a">online resource</subfield><subfield code="b">cr</subfield><subfield code="2">rdacarrier</subfield></datafield><datafield tag="588" ind1=" " ind2=" "><subfield code="a">Description based on online resource; title from title page (Safari, viewed August 30, 2018).</subfield></datafield><datafield tag="500" ind1=" " ind2=" "><subfield code="a">Previous edition published: 2014.</subfield></datafield><datafield tag="520" ind1=" " ind2=" "><subfield code="a">A series of practical recipes to simplify the Git learning experience and increase your productivity when using Git version control Key Features Explore practical recipes to use Git's most advanced features Learn how Git references its objects and how history is recorded Use reflog and git fsck to recover lost information Book Description Git is one of the most popular tools for versioning. Git Version Control Cookbook builds on the success of the previous edition and provides you with an up-to-date guide to solving problems related to versioning. You'll start by learning about the Git data model and how it stores files and looks at commits. By using simple commands, you'll learn how to navigate through the database. Once you have accustomed yourself to the basics, you'll explore techniques to configure Git with comprehensive examples and configuration targets. You'll gain insights into improving your understanding of branches and recovery from mistakes -- right from committing to a wrong branch to recovering lost commits or files. You'll then move on to discovering the features that Git rebase has to offer and use regular Git merge on other branches. You'll explore Git notes and learn how to utilize the update, list, and search commands. In addition to this, you'll learn how to extract metadata from repositories and automate your daily tasks using Git hooks. You'll then study in detail repository maintenance, patching, and offline sharing. By the end of the book, you'll have grasped various tips and tricks for everyday usage, while increasing your knowledge of Git providers, integrations, and clients. What you will learn Understand the Git data model and use commands to navigate the database Find out how you can recover lost commits or files Force a rebase on some branches and use regular Git to merge on the rest Master the techniques required to extract metadata from repositories Explore Git notes and learn about the various features that it offers See how to decode different subcommands Who this book is for The Git Version Control Cookbook is for you if you are a developer or Build Release manager looking for a full-fledged practical guide that will take your Git knowledge to the next level. Basic knowledge of GNU tools and shell or bash scripting is needed. Downloading the example code for this book You can download the example code files for all Packt books you have purchased from your account at http://www.PacktPub.com. If you purchased t...</subfield></datafield><datafield tag="588" ind1="0" ind2=" "><subfield code="a">Print version record.</subfield></datafield><datafield tag="505" ind1="0" ind2=" "><subfield code="a">Cover -- Title Page -- Copyright and Credits -- Packt Upsell -- Contributors -- Table of Contents -- Preface -- Chapter 1: Navigating Git -- Introduction -- Git's objects -- Getting ready -- How to do it... -- The commit object -- The tree object -- The blob object -- The branch object -- The tag object -- How it works... -- There's more... -- The three stages -- Getting ready -- How to do it... -- How it works... -- See also -- Viewing the DAG -- Getting ready -- How to do it... -- How it works... -- Extracting fixed issues -- Getting ready -- How to do it... -- How it works... -- There's more... -- Getting a list of the changed files -- Getting ready -- How to do it... -- How it works... -- There's more... -- See also -- Viewing the history with gitk -- Getting ready -- How to do it... -- How it works... -- There's more... -- Finding commits in the history -- Getting ready -- How to do it... -- How it works... -- There's more... -- Searching through the history code -- Getting ready -- How to do it... -- How it works... -- There's more... -- Chapter 2: Configuration -- Introduction -- Configuration targets -- Getting ready -- How to do it... -- How it works... -- There's more... -- Querying the existing configuration -- Getting ready -- How to do it... -- How it works... -- There's more... -- Templates -- Getting ready -- How to do it... -- How it works... -- A .git directory template -- Getting ready -- How to do it... -- How it works... -- See also -- A few configuration examples -- Getting ready -- How to do it... -- Rebase and merge setup -- Expiry of objects -- Autocorrect -- How it works... -- There's more... -- Git aliases -- Getting ready -- How to do it... -- How it works... -- There's more... -- The refspec exemplified -- Getting ready -- How to do it... -- How it works... -- Chapter 3: Branching, Merging, and Options -- Introduction.</subfield></datafield><datafield tag="505" ind1="8" ind2=" "><subfield code="a">Managing your local branches -- Getting ready -- How to do it... -- How it works... -- There's more... -- Branches with remotes -- Getting ready -- How to do it... -- There's more... -- Forcing a merge commit -- Getting ready -- How to do it... -- There's more... -- Using git reuse recorded resolution (rerere) to merge Git conflicts -- How to do it... -- There's more... -- Compute the difference between branches -- Getting ready -- How to do it... -- Orphan branches -- Getting ready -- How to do it... -- There's more... -- Chapter 4: Rebasing Regularly and Interactively, and Other Use Cases -- Introduction -- Rebasing commits to another branch -- Getting ready -- How to do it... -- How it works... -- Continuing a rebase with merge conflicts -- How to do it... -- How it works... -- There's more... -- Rebasing selected commits interactively -- Getting ready -- How to do it... -- There's more... -- Squashing commits using an interactive rebase -- Getting ready -- How to do it... -- There's more... -- Changing the author of commits using a rebase -- Getting ready -- How to do it... -- How it works... -- Autosquashing commits -- Getting ready -- How to do it... -- There's more... -- Chapter 5: Storing Additional Information in Your Repository -- Introduction -- Adding your first Git note -- Getting ready -- How to do it... -- There's more... -- Separating notes by category -- Getting ready -- How to do it... -- How it works... -- Retrieving notes from the remote repository -- Getting ready -- How to do it... -- How it works... -- Pushing Git notes to a remote repository -- How to do it... -- There's more... -- Tagging commits in the repository -- Getting ready -- How to do it... -- There's more... -- Chapter 6: Extracting Data from the Repository -- Introduction -- Extracting the top contributor -- Getting ready -- How to do it... -- There's more.</subfield></datafield><datafield tag="505" ind1="8" ind2=" "><subfield code="a">Finding bottlenecks in the source tree -- Getting ready -- How to do it... -- There's more... -- Grepping the commit messages -- Getting ready -- How to do it... -- The contents of the releases -- How to do it... -- How it works... -- Finding what has been achieved in the repository in the last period -- How to do it... -- How it works... -- There's more... -- Chapter 7: Enhancing Your Daily Work with Git Hooks, Aliases, and Scripts -- Introduction -- Using a branch description in a commit message -- Getting ready -- How to do it... -- Creating a dynamic commit message template -- Getting ready -- How to do it... -- There's more... -- Using external information in a commit message -- Getting ready -- How to do it... -- Preventing the push of specific commits -- Getting ready -- How to do it... -- There's more... -- Configuring and using Git aliases -- How to do it... -- How it works... -- Configuring and using Git scripts -- How to do it... -- Setting up and using a commit template -- Getting ready -- How to do it... -- Chapter 8: Recovering from Mistakes -- Introduction -- Undo -- Remove a commit completely -- Getting ready -- How to do it... -- How it works... -- Undo -- Remove a commit and retain changes to files -- Getting ready -- How to do it... -- How it works... -- Undo -- Remove a commit and retain changes in the staging area -- Getting ready -- How to do it... -- How it works... -- Undo -- Working with a dirty area -- Getting ready -- How to do it... -- How it works... -- Redo -- Recreate the latest commit with new changes -- Getting ready -- How to do it... -- How it works... -- There's more... -- Revert -- Undo the changes introduced by a commit -- Getting ready -- How to do it... -- How it works... -- There's more... -- Reverting a merge -- Getting ready -- How to do it... -- How it works... -- There's more... -- See also.</subfield></datafield><datafield tag="505" ind1="8" ind2=" "><subfield code="a">Viewing past Git actions with git reflog -- Getting ready -- How to do it... -- How it works... -- Finding lost changes with git fsck -- Getting ready -- How to do it... -- How it works... -- Chapter 9: Repository Maintenance -- Introduction -- Pruning remote branches -- Getting ready -- How to do it... -- How it works... -- There's more... -- Running garbage collection manually -- Getting ready -- How to do it... -- How it works... -- Turning off automatic garbage collection -- Getting ready -- How to do it... -- Splitting a repository -- Getting ready -- How to do it... -- How it works... -- There's more... -- Rewriting history -- changing a single file -- Getting ready -- How to do it... -- How it works... -- Creating a backup of your repositories as mirror repositories -- Getting ready -- How to do it... -- How it works... -- There's more... -- A quick "how-to" submodule -- Getting ready -- How to do it... -- There's more... -- Subtree merging -- Getting ready -- How to do it... -- How it works... -- See also -- Submodule versus subtree merging -- Chapter 10: Patching and Offline Sharing -- Introduction -- Creating patches -- Getting ready -- How to do it... -- How it works... -- There's more... -- Creating patches from branches -- Getting ready -- How to do it... -- How it works... -- There's more... -- Applying patches -- Getting ready -- How to do it... -- How it works... -- There's more... -- Sending patches -- Getting ready -- How to do it... -- How it works... -- There's more... -- Creating Git bundles -- Getting ready -- How to do it... -- How it works... -- Using a Git bundle -- Getting ready -- How to do it... -- There's more... -- Creating archives from a tree -- Getting ready -- How to do it... -- There's more... -- Chapter 11: Tips and Tricks -- Introduction -- Using git stash -- Getting ready -- How to do it... -- How it works.</subfield></datafield><datafield tag="505" ind1="8" ind2=" "><subfield code="a">There's more... -- Saving and applying stashes -- Getting ready -- How to do it... -- There's more... -- Debugging with git bisect -- Getting ready -- How to do it... -- There's more... -- Using the blame command -- Getting ready -- How to do it... -- There's more... -- Coloring the UI in the prompt -- Getting ready -- How to do it... -- There's more... -- Autocompletion -- Getting ready -- Linux -- Mac -- Windows -- How to do it... -- How it works... -- There's more... -- Bash prompt with status information -- Getting ready -- How to do it... -- How it works... -- There's more... -- See also -- More aliases -- Getting ready -- How to do it... -- Interactive add -- Getting ready -- How to do it... -- There's more... -- Interactive add with Git gui -- Getting ready -- How to do it... -- Ignoring files -- Getting ready -- How to do it... -- There's more... -- See also -- Showing and cleaning ignored files -- Getting ready -- How to do it... -- There's more... -- Chapter 12: Git Providers, Integrations, and Clients -- Introduction -- Setting up an organization at GitHub -- Getting ready -- How to do it... -- How it works... -- There's more... -- See also -- Creating a repository at GitHub -- Getting ready -- How to do it... -- How it works... -- There's more... -- Adding templates for issues and pull requests -- Getting ready -- How to do it... -- How it works... -- Creating a GitHub API key -- Getting ready -- How to do it... -- How it works... -- See also -- Using GitHub to authenticate at Jenkins -- Getting ready -- How to do it... -- How it works... -- There's more... -- See also -- Triggering Jenkins builds -- Getting ready -- How to do it... -- How it works... -- There's more... -- See also -- Using Jenkinsfiles -- Getting ready -- How to do it... -- How it works... -- There's more... -- See also -- Other Books You May Enjoy -- Index.</subfield></datafield><datafield tag="630" ind1="0" ind2="0"><subfield code="a">Git (Computer file)</subfield><subfield code="0">http://id.loc.gov/authorities/names/n2013035657</subfield></datafield><datafield tag="630" ind1="0" ind2="7"><subfield code="a">Git (Computer file)</subfield><subfield code="2">fast</subfield></datafield><datafield tag="650" ind1=" " ind2="0"><subfield code="a">Software engineering.</subfield><subfield code="0">http://id.loc.gov/authorities/subjects/sh87007398</subfield></datafield><datafield tag="650" ind1=" " ind2="0"><subfield code="a">Open source software.</subfield><subfield code="0">http://id.loc.gov/authorities/subjects/sh99003437</subfield></datafield><datafield tag="650" ind1=" " ind2="6"><subfield code="a">Génie logiciel.</subfield></datafield><datafield tag="650" ind1=" " ind2="6"><subfield code="a">Logiciels libres.</subfield></datafield><datafield tag="650" ind1=" " ind2="7"><subfield code="a">Open source software</subfield><subfield code="2">fast</subfield></datafield><datafield tag="650" ind1=" " ind2="7"><subfield code="a">Software engineering</subfield><subfield code="2">fast</subfield></datafield><datafield tag="700" ind1="1" ind2=" "><subfield code="a">Olsson, Aske,</subfield><subfield code="e">author.</subfield></datafield><datafield tag="700" ind1="1" ind2=" "><subfield code="a">Voss, Rasmus,</subfield><subfield code="e">author.</subfield></datafield><datafield tag="700" ind1="1" ind2=" "><subfield code="a">Zattin, Emanuele,</subfield><subfield code="e">author.</subfield></datafield><datafield tag="758" ind1=" " ind2=" "><subfield code="i">has work:</subfield><subfield code="a">Git version control cookbook (Text)</subfield><subfield code="1">https://id.oclc.org/worldcat/entity/E39PCG4t7CF3hmf3HY6jcp7DYP</subfield><subfield code="4">https://id.oclc.org/worldcat/ontology/hasWork</subfield></datafield><datafield tag="776" ind1="0" ind2="8"><subfield code="i">Print version:</subfield><subfield code="a">Geisshirt, Kenneth.</subfield><subfield code="t">Git version control cookbook.</subfield><subfield code="b">Second edition.</subfield><subfield code="d">Birmingham, UK : Packt Publishing, 2018</subfield><subfield code="z">9781789136944</subfield><subfield code="w">(OCoLC)1039938039</subfield></datafield><datafield tag="856" ind1="4" ind2="0"><subfield code="l">FWS01</subfield><subfield code="p">ZDB-4-EBA</subfield><subfield code="q">FWS_PDA_EBA</subfield><subfield code="u">https://search.ebscohost.com/login.aspx?direct=true&scope=site&db=nlebk&AN=1857164</subfield><subfield code="3">Volltext</subfield></datafield><datafield tag="938" ind1=" " ind2=" "><subfield code="a">Askews and Holts Library Services</subfield><subfield code="b">ASKH</subfield><subfield code="n">BDZ0037623550</subfield></datafield><datafield tag="938" ind1=" " ind2=" "><subfield code="a">YBP Library Services</subfield><subfield code="b">YANK</subfield><subfield code="n">15644348</subfield></datafield><datafield tag="938" ind1=" " ind2=" "><subfield code="a">EBSCOhost</subfield><subfield code="b">EBSC</subfield><subfield code="n">1857164</subfield></datafield><datafield tag="994" ind1=" " ind2=" "><subfield code="a">92</subfield><subfield code="b">GEBAY</subfield></datafield><datafield tag="912" ind1=" " ind2=" "><subfield code="a">ZDB-4-EBA</subfield></datafield><datafield tag="049" ind1=" " ind2=" "><subfield code="a">DE-863</subfield></datafield></record></collection> |
id | ZDB-4-EBA-on1050953483 |
illustrated | Illustrated |
indexdate | 2024-11-27T13:29:07Z |
institution | BVB |
isbn | 9781789136944 1789136946 |
language | English |
oclc_num | 1050953483 |
open_access_boolean | |
owner | MAIN DE-863 DE-BY-FWS |
owner_facet | MAIN DE-863 DE-BY-FWS |
physical | 1 online resource (1 volume) : illustrations |
psigel | ZDB-4-EBA |
publishDate | 2018 |
publishDateSearch | 2018 |
publishDateSort | 2018 |
publisher | Packt Publishing, |
record_format | marc |
spelling | Geisshirt, Kenneth, author. Git version control cookbook : leverage version control to transform your development workflow and boost productivity / Kenneth Geisshirt, Emanuele Zattin, Aske Olsson, Rasmus Voss. Second edition. Birmingham, UK : Packt Publishing, 2018. 1 online resource (1 volume) : illustrations text txt rdacontent computer c rdamedia online resource cr rdacarrier Description based on online resource; title from title page (Safari, viewed August 30, 2018). Previous edition published: 2014. A series of practical recipes to simplify the Git learning experience and increase your productivity when using Git version control Key Features Explore practical recipes to use Git's most advanced features Learn how Git references its objects and how history is recorded Use reflog and git fsck to recover lost information Book Description Git is one of the most popular tools for versioning. Git Version Control Cookbook builds on the success of the previous edition and provides you with an up-to-date guide to solving problems related to versioning. You'll start by learning about the Git data model and how it stores files and looks at commits. By using simple commands, you'll learn how to navigate through the database. Once you have accustomed yourself to the basics, you'll explore techniques to configure Git with comprehensive examples and configuration targets. You'll gain insights into improving your understanding of branches and recovery from mistakes -- right from committing to a wrong branch to recovering lost commits or files. You'll then move on to discovering the features that Git rebase has to offer and use regular Git merge on other branches. You'll explore Git notes and learn how to utilize the update, list, and search commands. In addition to this, you'll learn how to extract metadata from repositories and automate your daily tasks using Git hooks. You'll then study in detail repository maintenance, patching, and offline sharing. By the end of the book, you'll have grasped various tips and tricks for everyday usage, while increasing your knowledge of Git providers, integrations, and clients. What you will learn Understand the Git data model and use commands to navigate the database Find out how you can recover lost commits or files Force a rebase on some branches and use regular Git to merge on the rest Master the techniques required to extract metadata from repositories Explore Git notes and learn about the various features that it offers See how to decode different subcommands Who this book is for The Git Version Control Cookbook is for you if you are a developer or Build Release manager looking for a full-fledged practical guide that will take your Git knowledge to the next level. Basic knowledge of GNU tools and shell or bash scripting is needed. Downloading the example code for this book You can download the example code files for all Packt books you have purchased from your account at http://www.PacktPub.com. If you purchased t... Print version record. Cover -- Title Page -- Copyright and Credits -- Packt Upsell -- Contributors -- Table of Contents -- Preface -- Chapter 1: Navigating Git -- Introduction -- Git's objects -- Getting ready -- How to do it... -- The commit object -- The tree object -- The blob object -- The branch object -- The tag object -- How it works... -- There's more... -- The three stages -- Getting ready -- How to do it... -- How it works... -- See also -- Viewing the DAG -- Getting ready -- How to do it... -- How it works... -- Extracting fixed issues -- Getting ready -- How to do it... -- How it works... -- There's more... -- Getting a list of the changed files -- Getting ready -- How to do it... -- How it works... -- There's more... -- See also -- Viewing the history with gitk -- Getting ready -- How to do it... -- How it works... -- There's more... -- Finding commits in the history -- Getting ready -- How to do it... -- How it works... -- There's more... -- Searching through the history code -- Getting ready -- How to do it... -- How it works... -- There's more... -- Chapter 2: Configuration -- Introduction -- Configuration targets -- Getting ready -- How to do it... -- How it works... -- There's more... -- Querying the existing configuration -- Getting ready -- How to do it... -- How it works... -- There's more... -- Templates -- Getting ready -- How to do it... -- How it works... -- A .git directory template -- Getting ready -- How to do it... -- How it works... -- See also -- A few configuration examples -- Getting ready -- How to do it... -- Rebase and merge setup -- Expiry of objects -- Autocorrect -- How it works... -- There's more... -- Git aliases -- Getting ready -- How to do it... -- How it works... -- There's more... -- The refspec exemplified -- Getting ready -- How to do it... -- How it works... -- Chapter 3: Branching, Merging, and Options -- Introduction. Managing your local branches -- Getting ready -- How to do it... -- How it works... -- There's more... -- Branches with remotes -- Getting ready -- How to do it... -- There's more... -- Forcing a merge commit -- Getting ready -- How to do it... -- There's more... -- Using git reuse recorded resolution (rerere) to merge Git conflicts -- How to do it... -- There's more... -- Compute the difference between branches -- Getting ready -- How to do it... -- Orphan branches -- Getting ready -- How to do it... -- There's more... -- Chapter 4: Rebasing Regularly and Interactively, and Other Use Cases -- Introduction -- Rebasing commits to another branch -- Getting ready -- How to do it... -- How it works... -- Continuing a rebase with merge conflicts -- How to do it... -- How it works... -- There's more... -- Rebasing selected commits interactively -- Getting ready -- How to do it... -- There's more... -- Squashing commits using an interactive rebase -- Getting ready -- How to do it... -- There's more... -- Changing the author of commits using a rebase -- Getting ready -- How to do it... -- How it works... -- Autosquashing commits -- Getting ready -- How to do it... -- There's more... -- Chapter 5: Storing Additional Information in Your Repository -- Introduction -- Adding your first Git note -- Getting ready -- How to do it... -- There's more... -- Separating notes by category -- Getting ready -- How to do it... -- How it works... -- Retrieving notes from the remote repository -- Getting ready -- How to do it... -- How it works... -- Pushing Git notes to a remote repository -- How to do it... -- There's more... -- Tagging commits in the repository -- Getting ready -- How to do it... -- There's more... -- Chapter 6: Extracting Data from the Repository -- Introduction -- Extracting the top contributor -- Getting ready -- How to do it... -- There's more. Finding bottlenecks in the source tree -- Getting ready -- How to do it... -- There's more... -- Grepping the commit messages -- Getting ready -- How to do it... -- The contents of the releases -- How to do it... -- How it works... -- Finding what has been achieved in the repository in the last period -- How to do it... -- How it works... -- There's more... -- Chapter 7: Enhancing Your Daily Work with Git Hooks, Aliases, and Scripts -- Introduction -- Using a branch description in a commit message -- Getting ready -- How to do it... -- Creating a dynamic commit message template -- Getting ready -- How to do it... -- There's more... -- Using external information in a commit message -- Getting ready -- How to do it... -- Preventing the push of specific commits -- Getting ready -- How to do it... -- There's more... -- Configuring and using Git aliases -- How to do it... -- How it works... -- Configuring and using Git scripts -- How to do it... -- Setting up and using a commit template -- Getting ready -- How to do it... -- Chapter 8: Recovering from Mistakes -- Introduction -- Undo -- Remove a commit completely -- Getting ready -- How to do it... -- How it works... -- Undo -- Remove a commit and retain changes to files -- Getting ready -- How to do it... -- How it works... -- Undo -- Remove a commit and retain changes in the staging area -- Getting ready -- How to do it... -- How it works... -- Undo -- Working with a dirty area -- Getting ready -- How to do it... -- How it works... -- Redo -- Recreate the latest commit with new changes -- Getting ready -- How to do it... -- How it works... -- There's more... -- Revert -- Undo the changes introduced by a commit -- Getting ready -- How to do it... -- How it works... -- There's more... -- Reverting a merge -- Getting ready -- How to do it... -- How it works... -- There's more... -- See also. Viewing past Git actions with git reflog -- Getting ready -- How to do it... -- How it works... -- Finding lost changes with git fsck -- Getting ready -- How to do it... -- How it works... -- Chapter 9: Repository Maintenance -- Introduction -- Pruning remote branches -- Getting ready -- How to do it... -- How it works... -- There's more... -- Running garbage collection manually -- Getting ready -- How to do it... -- How it works... -- Turning off automatic garbage collection -- Getting ready -- How to do it... -- Splitting a repository -- Getting ready -- How to do it... -- How it works... -- There's more... -- Rewriting history -- changing a single file -- Getting ready -- How to do it... -- How it works... -- Creating a backup of your repositories as mirror repositories -- Getting ready -- How to do it... -- How it works... -- There's more... -- A quick "how-to" submodule -- Getting ready -- How to do it... -- There's more... -- Subtree merging -- Getting ready -- How to do it... -- How it works... -- See also -- Submodule versus subtree merging -- Chapter 10: Patching and Offline Sharing -- Introduction -- Creating patches -- Getting ready -- How to do it... -- How it works... -- There's more... -- Creating patches from branches -- Getting ready -- How to do it... -- How it works... -- There's more... -- Applying patches -- Getting ready -- How to do it... -- How it works... -- There's more... -- Sending patches -- Getting ready -- How to do it... -- How it works... -- There's more... -- Creating Git bundles -- Getting ready -- How to do it... -- How it works... -- Using a Git bundle -- Getting ready -- How to do it... -- There's more... -- Creating archives from a tree -- Getting ready -- How to do it... -- There's more... -- Chapter 11: Tips and Tricks -- Introduction -- Using git stash -- Getting ready -- How to do it... -- How it works. There's more... -- Saving and applying stashes -- Getting ready -- How to do it... -- There's more... -- Debugging with git bisect -- Getting ready -- How to do it... -- There's more... -- Using the blame command -- Getting ready -- How to do it... -- There's more... -- Coloring the UI in the prompt -- Getting ready -- How to do it... -- There's more... -- Autocompletion -- Getting ready -- Linux -- Mac -- Windows -- How to do it... -- How it works... -- There's more... -- Bash prompt with status information -- Getting ready -- How to do it... -- How it works... -- There's more... -- See also -- More aliases -- Getting ready -- How to do it... -- Interactive add -- Getting ready -- How to do it... -- There's more... -- Interactive add with Git gui -- Getting ready -- How to do it... -- Ignoring files -- Getting ready -- How to do it... -- There's more... -- See also -- Showing and cleaning ignored files -- Getting ready -- How to do it... -- There's more... -- Chapter 12: Git Providers, Integrations, and Clients -- Introduction -- Setting up an organization at GitHub -- Getting ready -- How to do it... -- How it works... -- There's more... -- See also -- Creating a repository at GitHub -- Getting ready -- How to do it... -- How it works... -- There's more... -- Adding templates for issues and pull requests -- Getting ready -- How to do it... -- How it works... -- Creating a GitHub API key -- Getting ready -- How to do it... -- How it works... -- See also -- Using GitHub to authenticate at Jenkins -- Getting ready -- How to do it... -- How it works... -- There's more... -- See also -- Triggering Jenkins builds -- Getting ready -- How to do it... -- How it works... -- There's more... -- See also -- Using Jenkinsfiles -- Getting ready -- How to do it... -- How it works... -- There's more... -- See also -- Other Books You May Enjoy -- Index. Git (Computer file) http://id.loc.gov/authorities/names/n2013035657 Git (Computer file) fast Software engineering. http://id.loc.gov/authorities/subjects/sh87007398 Open source software. http://id.loc.gov/authorities/subjects/sh99003437 Génie logiciel. Logiciels libres. Open source software fast Software engineering fast Olsson, Aske, author. Voss, Rasmus, author. Zattin, Emanuele, author. has work: Git version control cookbook (Text) https://id.oclc.org/worldcat/entity/E39PCG4t7CF3hmf3HY6jcp7DYP https://id.oclc.org/worldcat/ontology/hasWork Print version: Geisshirt, Kenneth. Git version control cookbook. Second edition. Birmingham, UK : Packt Publishing, 2018 9781789136944 (OCoLC)1039938039 FWS01 ZDB-4-EBA FWS_PDA_EBA https://search.ebscohost.com/login.aspx?direct=true&scope=site&db=nlebk&AN=1857164 Volltext |
spellingShingle | Geisshirt, Kenneth Olsson, Aske Voss, Rasmus Zattin, Emanuele Git version control cookbook : leverage version control to transform your development workflow and boost productivity / Cover -- Title Page -- Copyright and Credits -- Packt Upsell -- Contributors -- Table of Contents -- Preface -- Chapter 1: Navigating Git -- Introduction -- Git's objects -- Getting ready -- How to do it... -- The commit object -- The tree object -- The blob object -- The branch object -- The tag object -- How it works... -- There's more... -- The three stages -- Getting ready -- How to do it... -- How it works... -- See also -- Viewing the DAG -- Getting ready -- How to do it... -- How it works... -- Extracting fixed issues -- Getting ready -- How to do it... -- How it works... -- There's more... -- Getting a list of the changed files -- Getting ready -- How to do it... -- How it works... -- There's more... -- See also -- Viewing the history with gitk -- Getting ready -- How to do it... -- How it works... -- There's more... -- Finding commits in the history -- Getting ready -- How to do it... -- How it works... -- There's more... -- Searching through the history code -- Getting ready -- How to do it... -- How it works... -- There's more... -- Chapter 2: Configuration -- Introduction -- Configuration targets -- Getting ready -- How to do it... -- How it works... -- There's more... -- Querying the existing configuration -- Getting ready -- How to do it... -- How it works... -- There's more... -- Templates -- Getting ready -- How to do it... -- How it works... -- A .git directory template -- Getting ready -- How to do it... -- How it works... -- See also -- A few configuration examples -- Getting ready -- How to do it... -- Rebase and merge setup -- Expiry of objects -- Autocorrect -- How it works... -- There's more... -- Git aliases -- Getting ready -- How to do it... -- How it works... -- There's more... -- The refspec exemplified -- Getting ready -- How to do it... -- How it works... -- Chapter 3: Branching, Merging, and Options -- Introduction. Managing your local branches -- Getting ready -- How to do it... -- How it works... -- There's more... -- Branches with remotes -- Getting ready -- How to do it... -- There's more... -- Forcing a merge commit -- Getting ready -- How to do it... -- There's more... -- Using git reuse recorded resolution (rerere) to merge Git conflicts -- How to do it... -- There's more... -- Compute the difference between branches -- Getting ready -- How to do it... -- Orphan branches -- Getting ready -- How to do it... -- There's more... -- Chapter 4: Rebasing Regularly and Interactively, and Other Use Cases -- Introduction -- Rebasing commits to another branch -- Getting ready -- How to do it... -- How it works... -- Continuing a rebase with merge conflicts -- How to do it... -- How it works... -- There's more... -- Rebasing selected commits interactively -- Getting ready -- How to do it... -- There's more... -- Squashing commits using an interactive rebase -- Getting ready -- How to do it... -- There's more... -- Changing the author of commits using a rebase -- Getting ready -- How to do it... -- How it works... -- Autosquashing commits -- Getting ready -- How to do it... -- There's more... -- Chapter 5: Storing Additional Information in Your Repository -- Introduction -- Adding your first Git note -- Getting ready -- How to do it... -- There's more... -- Separating notes by category -- Getting ready -- How to do it... -- How it works... -- Retrieving notes from the remote repository -- Getting ready -- How to do it... -- How it works... -- Pushing Git notes to a remote repository -- How to do it... -- There's more... -- Tagging commits in the repository -- Getting ready -- How to do it... -- There's more... -- Chapter 6: Extracting Data from the Repository -- Introduction -- Extracting the top contributor -- Getting ready -- How to do it... -- There's more. Finding bottlenecks in the source tree -- Getting ready -- How to do it... -- There's more... -- Grepping the commit messages -- Getting ready -- How to do it... -- The contents of the releases -- How to do it... -- How it works... -- Finding what has been achieved in the repository in the last period -- How to do it... -- How it works... -- There's more... -- Chapter 7: Enhancing Your Daily Work with Git Hooks, Aliases, and Scripts -- Introduction -- Using a branch description in a commit message -- Getting ready -- How to do it... -- Creating a dynamic commit message template -- Getting ready -- How to do it... -- There's more... -- Using external information in a commit message -- Getting ready -- How to do it... -- Preventing the push of specific commits -- Getting ready -- How to do it... -- There's more... -- Configuring and using Git aliases -- How to do it... -- How it works... -- Configuring and using Git scripts -- How to do it... -- Setting up and using a commit template -- Getting ready -- How to do it... -- Chapter 8: Recovering from Mistakes -- Introduction -- Undo -- Remove a commit completely -- Getting ready -- How to do it... -- How it works... -- Undo -- Remove a commit and retain changes to files -- Getting ready -- How to do it... -- How it works... -- Undo -- Remove a commit and retain changes in the staging area -- Getting ready -- How to do it... -- How it works... -- Undo -- Working with a dirty area -- Getting ready -- How to do it... -- How it works... -- Redo -- Recreate the latest commit with new changes -- Getting ready -- How to do it... -- How it works... -- There's more... -- Revert -- Undo the changes introduced by a commit -- Getting ready -- How to do it... -- How it works... -- There's more... -- Reverting a merge -- Getting ready -- How to do it... -- How it works... -- There's more... -- See also. Viewing past Git actions with git reflog -- Getting ready -- How to do it... -- How it works... -- Finding lost changes with git fsck -- Getting ready -- How to do it... -- How it works... -- Chapter 9: Repository Maintenance -- Introduction -- Pruning remote branches -- Getting ready -- How to do it... -- How it works... -- There's more... -- Running garbage collection manually -- Getting ready -- How to do it... -- How it works... -- Turning off automatic garbage collection -- Getting ready -- How to do it... -- Splitting a repository -- Getting ready -- How to do it... -- How it works... -- There's more... -- Rewriting history -- changing a single file -- Getting ready -- How to do it... -- How it works... -- Creating a backup of your repositories as mirror repositories -- Getting ready -- How to do it... -- How it works... -- There's more... -- A quick "how-to" submodule -- Getting ready -- How to do it... -- There's more... -- Subtree merging -- Getting ready -- How to do it... -- How it works... -- See also -- Submodule versus subtree merging -- Chapter 10: Patching and Offline Sharing -- Introduction -- Creating patches -- Getting ready -- How to do it... -- How it works... -- There's more... -- Creating patches from branches -- Getting ready -- How to do it... -- How it works... -- There's more... -- Applying patches -- Getting ready -- How to do it... -- How it works... -- There's more... -- Sending patches -- Getting ready -- How to do it... -- How it works... -- There's more... -- Creating Git bundles -- Getting ready -- How to do it... -- How it works... -- Using a Git bundle -- Getting ready -- How to do it... -- There's more... -- Creating archives from a tree -- Getting ready -- How to do it... -- There's more... -- Chapter 11: Tips and Tricks -- Introduction -- Using git stash -- Getting ready -- How to do it... -- How it works. There's more... -- Saving and applying stashes -- Getting ready -- How to do it... -- There's more... -- Debugging with git bisect -- Getting ready -- How to do it... -- There's more... -- Using the blame command -- Getting ready -- How to do it... -- There's more... -- Coloring the UI in the prompt -- Getting ready -- How to do it... -- There's more... -- Autocompletion -- Getting ready -- Linux -- Mac -- Windows -- How to do it... -- How it works... -- There's more... -- Bash prompt with status information -- Getting ready -- How to do it... -- How it works... -- There's more... -- See also -- More aliases -- Getting ready -- How to do it... -- Interactive add -- Getting ready -- How to do it... -- There's more... -- Interactive add with Git gui -- Getting ready -- How to do it... -- Ignoring files -- Getting ready -- How to do it... -- There's more... -- See also -- Showing and cleaning ignored files -- Getting ready -- How to do it... -- There's more... -- Chapter 12: Git Providers, Integrations, and Clients -- Introduction -- Setting up an organization at GitHub -- Getting ready -- How to do it... -- How it works... -- There's more... -- See also -- Creating a repository at GitHub -- Getting ready -- How to do it... -- How it works... -- There's more... -- Adding templates for issues and pull requests -- Getting ready -- How to do it... -- How it works... -- Creating a GitHub API key -- Getting ready -- How to do it... -- How it works... -- See also -- Using GitHub to authenticate at Jenkins -- Getting ready -- How to do it... -- How it works... -- There's more... -- See also -- Triggering Jenkins builds -- Getting ready -- How to do it... -- How it works... -- There's more... -- See also -- Using Jenkinsfiles -- Getting ready -- How to do it... -- How it works... -- There's more... -- See also -- Other Books You May Enjoy -- Index. Git (Computer file) http://id.loc.gov/authorities/names/n2013035657 Git (Computer file) fast Software engineering. http://id.loc.gov/authorities/subjects/sh87007398 Open source software. http://id.loc.gov/authorities/subjects/sh99003437 Génie logiciel. Logiciels libres. Open source software fast Software engineering fast |
subject_GND | http://id.loc.gov/authorities/names/n2013035657 http://id.loc.gov/authorities/subjects/sh87007398 http://id.loc.gov/authorities/subjects/sh99003437 |
title | Git version control cookbook : leverage version control to transform your development workflow and boost productivity / |
title_auth | Git version control cookbook : leverage version control to transform your development workflow and boost productivity / |
title_exact_search | Git version control cookbook : leverage version control to transform your development workflow and boost productivity / |
title_full | Git version control cookbook : leverage version control to transform your development workflow and boost productivity / Kenneth Geisshirt, Emanuele Zattin, Aske Olsson, Rasmus Voss. |
title_fullStr | Git version control cookbook : leverage version control to transform your development workflow and boost productivity / Kenneth Geisshirt, Emanuele Zattin, Aske Olsson, Rasmus Voss. |
title_full_unstemmed | Git version control cookbook : leverage version control to transform your development workflow and boost productivity / Kenneth Geisshirt, Emanuele Zattin, Aske Olsson, Rasmus Voss. |
title_short | Git version control cookbook : |
title_sort | git version control cookbook leverage version control to transform your development workflow and boost productivity |
title_sub | leverage version control to transform your development workflow and boost productivity / |
topic | Git (Computer file) http://id.loc.gov/authorities/names/n2013035657 Git (Computer file) fast Software engineering. http://id.loc.gov/authorities/subjects/sh87007398 Open source software. http://id.loc.gov/authorities/subjects/sh99003437 Génie logiciel. Logiciels libres. Open source software fast Software engineering fast |
topic_facet | Git (Computer file) Software engineering. Open source software. Génie logiciel. Logiciels libres. Open source software Software engineering |
url | https://search.ebscohost.com/login.aspx?direct=true&scope=site&db=nlebk&AN=1857164 |
work_keys_str_mv | AT geisshirtkenneth gitversioncontrolcookbookleverageversioncontroltotransformyourdevelopmentworkflowandboostproductivity AT olssonaske gitversioncontrolcookbookleverageversioncontroltotransformyourdevelopmentworkflowandboostproductivity AT vossrasmus gitversioncontrolcookbookleverageversioncontroltotransformyourdevelopmentworkflowandboostproductivity AT zattinemanuele gitversioncontrolcookbookleverageversioncontroltotransformyourdevelopmentworkflowandboostproductivity |