Forgot to commit the untranslated files in "es".
[gitmagic/gitmagic.git] / es / basic.txt
blobafae34389e5e99441de9c17c0efa1fd05ef2e84c
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 of the outcome of an 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 === Downloading Files ===
97 Get a copy of a project managed with Git by typing:
99  $ git clone git://server/path/to/files
101 For example, to get all the files I used to create this site:
103  $ git clone git://git.or.cz/gitmagic.git
105 We'll have much to say about the *clone* command soon.
107 === The Bleeding Edge ===
109 If you've already downloaded a copy of a project using *git clone*, you can upgrade to the latest version with:
111  $ git pull
113 === Instant Publishing ===
115 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.
117 To do this with Git, in the directory where your script resides:
119  $ git init
120  $ git add .
121  $ git commit -m "First release"
123 Then tell your users to run:
125  $ git clone your.computer:/path/to/script
127 to download your script. This assumes they have ssh access. If not, run *git daemon* and tell your users to instead run:
129  $ git clone git://your.computer/path/to/script
131 From now on, every time your script is ready for release, execute:
133  $ git commit -a -m "Next release"
135 and your users can upgrade their version by changing to the directory containing your script and typing:
137  $ git pull
139 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.
141 === What Have I Done? ===
143 Find out what changes you've made since the last commit with:
145  $ git diff
147 Or since yesterday:
149  $ git diff "@{yesterday}"
151 Or between a particular version and 2 versions ago:
153  $ git diff SHA1_HASH "master~2"
155 In each case the output is a patch that can be applied with *git apply*.
156 Try also:
158  $ git whatchanged --since="2 weeks ago"
160 Often I'll browse history with http://sourceforge.net/projects/qgit[qgit]
161 instead, due to its slick photogenic interface, or
162 http://jonas.nitro.dk/tig/[tig], a text-mode interface that works well over
163 slow connections. Alternatively, install a web server, run *git instaweb* and
164 fire up any web browser.
166 === Exercise ===
168 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?
170 There are at least three solutions. Assuming we are at D:
172   1. The difference between A and B are the removed files. We can create a patch representing this difference and apply it:
174    $ git diff B A | git apply
176   2. Since we saved the files back at A, we can retrieve them:
178    $ git checkout A FILES...
180   3. We can view going from A to B as a change we want to undo:
182    $ git revert B
184 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.