equal
deleted
inserted
replaced
252 $ cat .git/gitconfig |
252 $ cat .git/gitconfig |
253 |
253 |
254 Showing what remote branches tracked:: |
254 Showing what remote branches tracked:: |
255 |
255 |
256 $ git remote show $remote |
256 $ git remote show $remote |
|
257 |
|
258 Undo mistaken rebase |
|
259 ==================== |
|
260 |
|
261 If there are no any ``reset``, ``rebase`` or ``merge`` afterwards the easiest |
|
262 way to recode to pre-rebase state is one of:: |
|
263 |
|
264 $ git rebase --abort |
|
265 $ git reset --hard ORIG_HEAD |
257 |
266 |
258 Debug git network operation |
267 Debug git network operation |
259 =========================== |
268 =========================== |
260 |
269 |
261 Git uses libcurl for network operation:: |
270 Git uses libcurl for network operation:: |