Skip to content

Commit 978e05f

Browse files
committed
add output of git grep and git show
added output of git grep -i fixme and git show 759d589bdfa61aff99e0535938f14f67b01c83f7 in the _inspecting history_ lesson
1 parent 2744e64 commit 978e05f

1 file changed

Lines changed: 18 additions & 0 deletions

File tree

content/archaeology.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,14 @@ some error message printed.
6262

6363
```console
6464
$ git clone https://github.com/networkx/networkx
65+
Cloning into 'networkx'...
66+
6567
$ cd networkx
68+
6669
$ git grep -i fixme
70+
doc/developer/release.rst: # FIXME - use eol_banner.html
71+
networkx/algorithms/isomorphism/tests/test_common.py: # FIXME: check why fails ismags but not vf2
72+
networkx/algorithms/shortest_paths/tests/test_weighted.py: # FIXME nx.goldberg_radzik(D, 1)
6773
```
6874

6975
While `git grep` searches the **current state** of the repository,
@@ -115,6 +121,18 @@ some error message printed.
115121
For instance:
116122
```console
117123
$ git show 759d589bdfa61aff99e0535938f14f67b01c83f7
124+
commit 759d589bdfa61aff99e0535938f14f67b01c83f7
125+
Author: Sanghack Lee <sanghack.lee@gmail.com>
126+
Date: Sun Mar 8 22:01:38 2020 -0400
127+
128+
Fix return values when drawing empty nodes and edges #3833 (#3854)
129+
130+
diff --git a/networkx/drawing/nx_pylab.py b/networkx/drawing/nx_pylab.py
131+
index 4b2f34bed..1421b055b 100644
132+
--- a/networkx/drawing/nx_pylab.py
133+
+++ b/networkx/drawing/nx_pylab.py
134+
...
135+
118136
```
119137
::::
120138

0 commit comments

Comments
 (0)