Git pocket guide:
Gespeichert in:
1. Verfasser: | |
---|---|
Format: | Buch |
Sprache: | English |
Veröffentlicht: |
Beijing [u.a.]
O'Reilly
2013
|
Ausgabe: | 1. ed. |
Schlagworte: | |
Online-Zugang: | Inhaltstext Inhaltsverzeichnis |
Beschreibung: | XVI, 215 S. graph. Darst. |
ISBN: | 9781449325862 1449325866 |
Internformat
MARC
LEADER | 00000nam a2200000 c 4500 | ||
---|---|---|---|
001 | BV041143250 | ||
003 | DE-604 | ||
005 | 20131002 | ||
007 | t | ||
008 | 130712s2013 d||| |||| 00||| eng d | ||
015 | |a 13,N17 |2 dnb | ||
016 | 7 | |a 1033616699 |2 DE-101 | |
020 | |a 9781449325862 |c : EUR 12.00 (DE) (freier Pr.), EUR 12.40 (AT) (freier Pr.) |9 978-1-449-32586-2 | ||
020 | |a 1449325866 |9 1-449-32586-6 | ||
024 | 3 | |a 9781449325862 | |
035 | |a (OCoLC)859372919 | ||
035 | |a (DE-599)DNB1033616699 | ||
040 | |a DE-604 |b ger |e rakddb | ||
041 | 0 | |a eng | |
049 | |a DE-91G | ||
084 | |a 004 |2 sdnb | ||
084 | |a DAT 304f |2 stub | ||
100 | 1 | |a Silverman, Richard E. |e Verfasser |4 aut | |
245 | 1 | 0 | |a Git pocket guide |c Richard E. Silverman |
250 | |a 1. ed. | ||
264 | 1 | |a Beijing [u.a.] |b O'Reilly |c 2013 | |
300 | |a XVI, 215 S. |b graph. Darst. | ||
336 | |b txt |2 rdacontent | ||
337 | |b n |2 rdamedia | ||
338 | |b nc |2 rdacarrier | ||
650 | 0 | 7 | |a Git |g Software |0 (DE-588)7687494-1 |2 gnd |9 rswk-swf |
689 | 0 | 0 | |a Git |g Software |0 (DE-588)7687494-1 |D s |
689 | 0 | |5 DE-604 | |
856 | 4 | 2 | |m X:MVB |q text/html |u http://deposit.dnb.de/cgi-bin/dokserv?id=4300565&prov=M&dok_var=1&dok_ext=htm |3 Inhaltstext |
856 | 4 | 2 | |m HBZ Datenaustausch |q application/pdf |u http://bvbr.bib-bvb.de:8991/F?func=service&doc_library=BVB01&local_base=BVB01&doc_number=026118847&sequence=000002&line_number=0001&func_code=DB_RECORDS&service_type=MEDIA |3 Inhaltsverzeichnis |
943 | 1 | |a oai:aleph.bib-bvb.de:BVB01-026118847 |
Datensatz im Suchindex
_version_ | 1806325340369321984 |
---|---|
adam_text |
Titel: Git pocket guide
Autor: Silverman, Richard E
Jahr: 2013
Git Pocket Guide Richard E. Silverman O’REILLY Beijing • Cambridge • Farnham • Köln • Sebastopol • Tokyo
Table of Contents Preface ix Chapter 1: Understanding Git 1 Overview 2 The Object Store 6 Object IDs and SHA-1 11 Where Objects Live 15 The Commit Graph 16 Refs 17 Branches 19 The Index 22 Merging 24 Push and Pull 26 Chapter 2: Getting Started 33 Basic Configuration 33 Creating a New, Empty Repository 39 Importing an Existing Project 41 Ignoring Files 42 Chapter 3: Making Commits 47 iii
Changing the index 47 Making a Commit 52 Chapter 4: Undoing and Editing Commits 57 Changing the Last Commit 58 Discarding the Last Commit 61 Undoing a Commit 62 Editing a Series of Commits 64 Chapter 5: Branching 69 The Default Branch, master 70 Making a New Branch 70 Switching Branches 72 Deleting a Branch 75 Renaming a Branch 78 Chapter 6: Tracking Other Repositories 79 Cloning a Repository 79 Local, Remote, and Tracking Branches 84 Synchronization: Push and Pull 86 Access Control 94 Chapter 7: Merging 95 Merge Conflicts 98 Details on Merging 105 Merge Tools 107 Custom Merge Tools 108 Merge Strategies 109 Why the Octopus? 111 Reusing Previous Merge Decisions 112 Chapter 8: Naming Commits 115 iv | Table of Contents
Naming Individual Commits 115 Naming Sets of Commits 123 Chapter 9: Viewing History 127 Command Format 127 Output Formats 128 Defining Your Own Formats 130 Limiting Commits to Be Shown 132 Regular Expressions 133 Reflog 134 Decoration 134 Date Style 135 Listing Changed Files 136 Showing and Following Renames or Copies 138 Rewriting Names and Addresses: The "mailmap" 139 Searching for Changes: The "pickaxe" 142 Showing Diffs 142 Comparing Branches 144 Showing Notes 146 Commit Ordering 146 History Simplification 147 Related Commands 147 Chapter 10: Editing History 149 Rebasing 149 Importing from One Repository to Another 153 Commit Surgery: git replace 159 The Big Hammer: git filter-branch 162 Notes 166 Chapter 11: Understanding Patches 167 Applying Plain Diffs 169 Table of Contents | v
Patches with Commit Information 170 Chapter 12: Remote Access 173 SSH 173 HTTP 177 Storing Your Username 177 Storing Your Password 178 References 179 Chapter 13: Miscellaneous 181 git cherry-pick 181 git notes 182 gitgrep 184 git rev-parse 187 git clean 187 git stash 188 git show 191 git tag 191 gitdiff 194 gitinstaweb 195 Git Hooks 196 Visual Tools 197 Submodules 197 Chapter 14: HowDol.? 199 . Make and Use a Central Repository? 199 . Fix the Last Commit l Made? 200 .Editthe Previousn Commits? 200 . Undo My Last n Commits? 200 . Reuse the Message from an Existing Commit? 201 .Reapplyan Existing Commit from Another Branch? 201 . List Files with Conflicts when Merging? 201 vi I Table of Contents
.Get a Summary of My Branches? 201 . .Get a Summary of My Working Tree and Index State? 202 . Stage All the Current Changes to My Working Files? 202 . .Show the Changes to My Working Files? 202 . .Save and Restore My Working Tree and Index Changes? 203 . Add a Downstream Branch Without Checking It Out? 203 . List the Files in a Specific Commit? 203 . .Show the Changes Made by a Commit? 203 . .Get Tab Completion of Branch Names, Tags, and So On? 204 .List All Remotes? 204 . Change the U RL for a Remote? 204 . Remove Old Remote-Tracking Branches? 205 .Have git log: 205 Index 207 Table of Contents | vii |
any_adam_object | 1 |
author | Silverman, Richard E. |
author_facet | Silverman, Richard E. |
author_role | aut |
author_sort | Silverman, Richard E. |
author_variant | r e s re res |
building | Verbundindex |
bvnumber | BV041143250 |
classification_tum | DAT 304f |
ctrlnum | (OCoLC)859372919 (DE-599)DNB1033616699 |
discipline | Informatik |
edition | 1. ed. |
format | Book |
fullrecord | <?xml version="1.0" encoding="UTF-8"?><collection xmlns="http://www.loc.gov/MARC21/slim"><record><leader>00000nam a2200000 c 4500</leader><controlfield tag="001">BV041143250</controlfield><controlfield tag="003">DE-604</controlfield><controlfield tag="005">20131002</controlfield><controlfield tag="007">t</controlfield><controlfield tag="008">130712s2013 d||| |||| 00||| eng d</controlfield><datafield tag="015" ind1=" " ind2=" "><subfield code="a">13,N17</subfield><subfield code="2">dnb</subfield></datafield><datafield tag="016" ind1="7" ind2=" "><subfield code="a">1033616699</subfield><subfield code="2">DE-101</subfield></datafield><datafield tag="020" ind1=" " ind2=" "><subfield code="a">9781449325862</subfield><subfield code="c">: EUR 12.00 (DE) (freier Pr.), EUR 12.40 (AT) (freier Pr.)</subfield><subfield code="9">978-1-449-32586-2</subfield></datafield><datafield tag="020" ind1=" " ind2=" "><subfield code="a">1449325866</subfield><subfield code="9">1-449-32586-6</subfield></datafield><datafield tag="024" ind1="3" ind2=" "><subfield code="a">9781449325862</subfield></datafield><datafield tag="035" ind1=" " ind2=" "><subfield code="a">(OCoLC)859372919</subfield></datafield><datafield tag="035" ind1=" " ind2=" "><subfield code="a">(DE-599)DNB1033616699</subfield></datafield><datafield tag="040" ind1=" " ind2=" "><subfield code="a">DE-604</subfield><subfield code="b">ger</subfield><subfield code="e">rakddb</subfield></datafield><datafield tag="041" ind1="0" ind2=" "><subfield code="a">eng</subfield></datafield><datafield tag="049" ind1=" " ind2=" "><subfield code="a">DE-91G</subfield></datafield><datafield tag="084" ind1=" " ind2=" "><subfield code="a">004</subfield><subfield code="2">sdnb</subfield></datafield><datafield tag="084" ind1=" " ind2=" "><subfield code="a">DAT 304f</subfield><subfield code="2">stub</subfield></datafield><datafield tag="100" ind1="1" ind2=" "><subfield code="a">Silverman, Richard E.</subfield><subfield code="e">Verfasser</subfield><subfield code="4">aut</subfield></datafield><datafield tag="245" ind1="1" ind2="0"><subfield code="a">Git pocket guide</subfield><subfield code="c">Richard E. Silverman</subfield></datafield><datafield tag="250" ind1=" " ind2=" "><subfield code="a">1. ed.</subfield></datafield><datafield tag="264" ind1=" " ind2="1"><subfield code="a">Beijing [u.a.]</subfield><subfield code="b">O'Reilly</subfield><subfield code="c">2013</subfield></datafield><datafield tag="300" ind1=" " ind2=" "><subfield code="a">XVI, 215 S.</subfield><subfield code="b">graph. Darst.</subfield></datafield><datafield tag="336" ind1=" " ind2=" "><subfield code="b">txt</subfield><subfield code="2">rdacontent</subfield></datafield><datafield tag="337" ind1=" " ind2=" "><subfield code="b">n</subfield><subfield code="2">rdamedia</subfield></datafield><datafield tag="338" ind1=" " ind2=" "><subfield code="b">nc</subfield><subfield code="2">rdacarrier</subfield></datafield><datafield tag="650" ind1="0" ind2="7"><subfield code="a">Git</subfield><subfield code="g">Software</subfield><subfield code="0">(DE-588)7687494-1</subfield><subfield code="2">gnd</subfield><subfield code="9">rswk-swf</subfield></datafield><datafield tag="689" ind1="0" ind2="0"><subfield code="a">Git</subfield><subfield code="g">Software</subfield><subfield code="0">(DE-588)7687494-1</subfield><subfield code="D">s</subfield></datafield><datafield tag="689" ind1="0" ind2=" "><subfield code="5">DE-604</subfield></datafield><datafield tag="856" ind1="4" ind2="2"><subfield code="m">X:MVB</subfield><subfield code="q">text/html</subfield><subfield code="u">http://deposit.dnb.de/cgi-bin/dokserv?id=4300565&prov=M&dok_var=1&dok_ext=htm</subfield><subfield code="3">Inhaltstext</subfield></datafield><datafield tag="856" ind1="4" ind2="2"><subfield code="m">HBZ Datenaustausch</subfield><subfield code="q">application/pdf</subfield><subfield code="u">http://bvbr.bib-bvb.de:8991/F?func=service&doc_library=BVB01&local_base=BVB01&doc_number=026118847&sequence=000002&line_number=0001&func_code=DB_RECORDS&service_type=MEDIA</subfield><subfield code="3">Inhaltsverzeichnis</subfield></datafield><datafield tag="943" ind1="1" ind2=" "><subfield code="a">oai:aleph.bib-bvb.de:BVB01-026118847</subfield></datafield></record></collection> |
id | DE-604.BV041143250 |
illustrated | Illustrated |
indexdate | 2024-08-03T00:48:03Z |
institution | BVB |
isbn | 9781449325862 1449325866 |
language | English |
oai_aleph_id | oai:aleph.bib-bvb.de:BVB01-026118847 |
oclc_num | 859372919 |
open_access_boolean | |
owner | DE-91G DE-BY-TUM |
owner_facet | DE-91G DE-BY-TUM |
physical | XVI, 215 S. graph. Darst. |
publishDate | 2013 |
publishDateSearch | 2013 |
publishDateSort | 2013 |
publisher | O'Reilly |
record_format | marc |
spelling | Silverman, Richard E. Verfasser aut Git pocket guide Richard E. Silverman 1. ed. Beijing [u.a.] O'Reilly 2013 XVI, 215 S. graph. Darst. txt rdacontent n rdamedia nc rdacarrier Git Software (DE-588)7687494-1 gnd rswk-swf Git Software (DE-588)7687494-1 s DE-604 X:MVB text/html http://deposit.dnb.de/cgi-bin/dokserv?id=4300565&prov=M&dok_var=1&dok_ext=htm Inhaltstext HBZ Datenaustausch application/pdf http://bvbr.bib-bvb.de:8991/F?func=service&doc_library=BVB01&local_base=BVB01&doc_number=026118847&sequence=000002&line_number=0001&func_code=DB_RECORDS&service_type=MEDIA Inhaltsverzeichnis |
spellingShingle | Silverman, Richard E. Git pocket guide Git Software (DE-588)7687494-1 gnd |
subject_GND | (DE-588)7687494-1 |
title | Git pocket guide |
title_auth | Git pocket guide |
title_exact_search | Git pocket guide |
title_full | Git pocket guide Richard E. Silverman |
title_fullStr | Git pocket guide Richard E. Silverman |
title_full_unstemmed | Git pocket guide Richard E. Silverman |
title_short | Git pocket guide |
title_sort | git pocket guide |
topic | Git Software (DE-588)7687494-1 gnd |
topic_facet | Git Software |
url | http://deposit.dnb.de/cgi-bin/dokserv?id=4300565&prov=M&dok_var=1&dok_ext=htm http://bvbr.bib-bvb.de:8991/F?func=service&doc_library=BVB01&local_base=BVB01&doc_number=026118847&sequence=000002&line_number=0001&func_code=DB_RECORDS&service_type=MEDIA |
work_keys_str_mv | AT silvermanricharde gitpocketguide |