Moved ChangeLog generation tip.
[gitmagic.git] / en / basic.txt
blobf55c5dc92857510808521a4bda794c5a50fecb0f
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, run:
18  $ git reset --hard
20 to go back to where you were. To save the state again:
22  $ git commit -a -m "Another backup"
24 ==== Add, Delete, Rename ====
26 The above will only keep 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 NEWFILES...
30 Similarly, if you want Git to forget about certain files, maybe because you've deleted them:
32  $ git rm OLDFILES...
34 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:
36  $ git mv OLDFILE NEWFILE
38 === Advanced Undo/Redo ===
40 Sometimes you just want to go back and forget about every change past a certain point because they're all wrong. Then:
42  $ git log
44 shows you a list of recent commits, and their SHA1 hashes. Next, type:
46  $ git reset --hard SHA1_HASH
48 to restore the state to a given commit and erase all newer commits from the record permanently.
50 Other times you want to hop to an old state briefly. In this case, type:
52  $ git checkout SHA1_HASH
54 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.
56 This alternate reality is called a 'branch', and <<branch,we'll have more to say about this later>>. For now, just remember that
58  $ git checkout master
60 will take you back to the present. Also, to stop Git complaining, always
61 commit or reset your changes before running checkout.
63 To take the computer game analogy again:
65 - *`git reset --hard`*: load an old save and delete all saved games newer than the one just loaded.
67 - *`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>>.
69 You can choose only to restore particular files and subdirectories by appending them after the command:
71  $ git checkout SHA1_HASH some.file another.file
73 Take care, as this form of *checkout* can silently overwrite files. To
74 prevent accidents, commit before running any checkout command, especially when
75 first learning Git. In general, whenever you feel unsure about any operation, Git command or not, first run *git commit -a*.
77 Don't like cutting and pasting hashes? Then use:
79  $ git checkout :/"My first b"
81 to jump to the commit that starts with a given message.
82 You can also ask for the 5th-last saved state:
84  $ git checkout master~5
86 ==== Reverting ====
88 In a court of law, events can be stricken from the record. Likewise, you can pick specific commits to undo.
90  $ git commit -a
91  $ git revert SHA1_HASH
93 will undo just the commit with the given hash. Running *git log* reveals the revert is recorded as a new commit.
95 === Changelog Generation ===
97 Some projects require a http://en.wikipedia.org/wiki/Changelog[changelog].
98 Generate one by typing:
100  $ git log > ChangeLog
102 === Downloading Files ===
104 Get a copy of a project managed with Git by typing:
106  $ git clone git://server/path/to/files
108 For example, to get all the files I used to create this site:
110  $ git clone git://git.or.cz/gitmagic.git
112 We'll have much to say about the *clone* command soon.
114 === The Bleeding Edge ===
116 If you've already downloaded a copy of a project using *git clone*, you can upgrade to the latest version with:
118  $ git pull
120 === Instant Publishing ===
122 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.
124 To do this with Git, in the directory where your script resides:
126  $ git init
127  $ git add .
128  $ git commit -m "First release"
130 Then tell your users to run:
132  $ git clone your.computer:/path/to/script
134 to download your script. This assumes they have ssh access. If not, run *git daemon* and tell your users to instead run:
136  $ git clone git://your.computer/path/to/script
138 From now on, every time your script is ready for release, execute:
140  $ git commit -a -m "Next release"
142 and your users can upgrade their version by changing to the directory containing your script and typing:
144  $ git pull
146 Your users will never end up with a version of your script you don't want them to see. Obviously this trick works for anything, not just scripts.
148 === What Have I Done? ===
150 Find out what changes you've made since the last commit with:
152  $ git diff
154 Or since yesterday:
156  $ git diff "@{yesterday}"
158 Or between a particular version and 2 versions ago:
160  $ git diff SHA1_HASH "master~2"
162 In each case the output is a patch that can be applied with *git apply*.
163 Try also:
165  $ git whatchanged --since="2 weeks ago"
167 Often I'll browse history with http://sourceforge.net/projects/qgit[qgit]
168 instead, due to its slick photogenic interface, or
169 http://jonas.nitro.dk/tig/[tig], a text-mode interface that works well over
170 slow connections. Alternatively, install a web server, run *git instaweb* and
171 fire up any web browser.
173 === Exercise ===
175 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 and not at B. How can we do this?
177 There are at least three solutions. Assuming we are at D:
179   1. The difference between A and B are the removed files. We can create a patch representing this difference and apply it:
181    $ git diff B A | git apply
183   2. Since we saved the files back at A, we can retrieve them:
185    $ git checkout A FILES...
187   3. We can view going from A to B as a change we want to undo:
189    $ git revert B
191 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.