first quick and dirty translation from german translation using omegat
[gitmagic.git] / tmp / orig / basic.txt
blob4b0114254a51594c7bff298716aa7f209deecfef
1 == Basic Tricks ==
3 Rather than diving into a sea of Git commands, use these elementary examples to
4 get your feet wet. Despite their simplicity, each of them are useful.
5 Indeed, in my first months with Git I never ventured beyond the material in this chapter.
7 === Saving State ===
9 About to attempt something drastic? Before you do, take a snapshot of all files
10 in the current directory with:
12  $ git init
13  $ git add .
14  $ git commit -m "My first backup"
16 Now if your new edits go awry, restore the pristine version:
18  $ git reset --hard
20 To save the state again:
22  $ git commit -a -m "Another backup"
24 === Add, Delete, Rename ===
26 The above only keeps track of the files that were present when you first ran *git add*. If you add new files or subdirectories, you'll have to tell Git:
28  $ git add readme.txt Documentation
30 Similarly, if you want Git to forget about certain files:
32  $ git rm kludge.h obsolete.c
33  $ git rm -r incriminating/evidence/
35 Git deletes these files for you if you haven't already.
37 Renaming a file is the same as removing the old name and adding the new name. There's also the shortcut *git mv* which has the same syntax as the *mv* command. For example:
39  $ git mv bug.c feature.c
41 === Advanced Undo/Redo ===
43 Sometimes you just want to go back and forget about every change past a certain point because they're all wrong. Then:
45  $ git log
47 shows you a list of recent commits, and their SHA1 hashes:
49 ----------------------------------
50 commit 766f9881690d240ba334153047649b8b8f11c664
51 Author: Bob <bob@example.com>
52 Date:   Tue Mar 14 01:59:26 2000 -0800
54     Replace printf() with write().
56 commit 82f5ea346a2e651544956a8653c0f58dc151275c
57 Author: Alice <alice@example.com>
58 Date:   Thu Jan 1 00:00:00 1970 +0000
60     Initial commit.
61 ----------------------------------
63 The first few characters of the hash are enough to specify the commit;
64 alternatively, copy and paste the entire hash. Type:
66  $ git reset --hard 766f
68 to restore the state to a given commit and erase all newer commits from the record permanently.
70 Other times you want to hop to an old state briefly. In this case, type:
72  $ git checkout 82f5
74 This takes you back in time, while preserving newer commits. However, like time travel in a science-fiction movie, if you now edit and commit, you will be in an alternate reality, because your actions are different to what they were the first time around.
76 This alternate reality is called a 'branch', and <<branch,we'll have more to say about this later>>. For now, just remember that
78  $ git checkout master
80 will take you back to the present. Also, to stop Git complaining, always
81 commit or reset your changes before running checkout.
83 To take the computer game analogy again:
85 - *`git reset --hard`*: load an old save and delete all saved games newer than the one just loaded.
87 - *`git checkout`*: load an old game, but if you play on, the game state will deviate from the newer saves you made the first time around. Any saved games you make now will end up in a separate branch representing the alternate reality you have entered. <<branch,We deal with this later>>.
89 You can choose only to restore particular files and subdirectories by appending them after the command:
91  $ git checkout 82f5 some.file another.file
93 Take care, as this form of *checkout* can silently overwrite files. To
94 prevent accidents, commit before running any checkout command, especially when
95 first learning Git. In general, whenever you feel unsure about any operation, Git command or not, first run *git commit -a*.
97 Don't like cutting and pasting hashes? Then use:
99  $ git checkout :/"My first b"
101 to jump to the commit that starts with a given message.
102 You can also ask for the 5th-last saved state:
104  $ git checkout master~5
106 === Reverting ===
108 In a court of law, events can be stricken from the record. Likewise, you can pick specific commits to undo.
110  $ git commit -a
111  $ git revert 1b6d
113 will undo just the commit with the given hash. The revert is recorded as a new
114 commit, which you can confirm by running *git log*.
116 === Changelog Generation ===
118 Some projects require a http://en.wikipedia.org/wiki/Changelog[changelog].
119 Generate one by typing:
121  $ git log > ChangeLog
123 === Downloading Files ===
125 Get a copy of a project managed with Git by typing:
127  $ git clone git://server/path/to/files
129 For example, to get all the files I used to create this site:
131  $ git clone git://git.or.cz/gitmagic.git
133 We'll have much to say about the *clone* command soon.
135 === The Bleeding Edge ===
137 If you've already downloaded a copy of a project using *git clone*, you can upgrade to the latest version with:
139  $ git pull
141 === Instant Publishing ===
143 Suppose you've written a script you'd like to share with others. You could just tell them to download from your computer, but if they do so while you're improving the script or making experimental changes, they could wind up in trouble.  Of course, this is why release cycles exist. Developers may work on a project frequently, but they only make the code available when they feel it is presentable.
145 To do this with Git, in the directory where your script resides:
147  $ git init
148  $ git add .
149  $ git commit -m "First release"
151 Then tell your users to run:
153  $ git clone your.computer:/path/to/script
155 to download your script. This assumes they have ssh access. If not, run *git daemon* and tell your users to instead run:
157  $ git clone git://your.computer/path/to/script
159 From now on, every time your script is ready for release, execute:
161  $ git commit -a -m "Next release"
163 and your users can upgrade their version by changing to the directory containing your script and typing:
165  $ git pull
167 Your users will never end up with a version of your script you don't want them to see.
169 === What Have I Done? ===
171 Find out what changes you've made since the last commit with:
173  $ git diff
175 Or since yesterday:
177  $ git diff "@{yesterday}"
179 Or between a particular version and 2 versions ago:
181  $ git diff 1b6d "master~2"
183 In each case the output is a patch that can be applied with *git apply*.
184 Try also:
186  $ git whatchanged --since="2 weeks ago"
188 Often I'll browse history with http://sourceforge.net/projects/qgit[qgit] instead, due to its slick photogenic interface, or http://jonas.nitro.dk/tig/[tig], a text-mode interface that works well over slow connections. Alternatively, install a web server, run *git instaweb* and fire up any web browser.
190 === Exercise ===
192 Let A, B, C, D be four successive commits where B is the same as A except some files have been removed. We want to add the files back at D. How can we do this?
194 There are at least three solutions. Assuming we are at D:
196   1. The difference between A and B are the removed files. We can create a patch representing this difference and apply it:
198    $ git diff B A | git apply
200   2. Since we saved the files back at A, we can retrieve them:
202    $ git checkout A foo.c bar.h
204   3. We can view going from A to B as a change we want to undo:
206    $ git revert B
208 Which choice is best? Whichever you prefer most. It is easy to get what you want with Git, and often there are many ways to get it.