1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
| $ git log --oneline --stat
c7cfec9 (HEAD -> master, beginning/master, beginning/HEAD) A small update to readme. readme.txt | 1 + 1 file changed, 1 insertion(+) 895ded5 Adding printf. math.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 5ab2e41 Adding two numbers. math.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 004e3a3 (beginning/another_fix_branch) Renaming c and d. c => another_rename | 0 d => renamed_file | 0 2 files changed, 0 insertions(+), 0 deletions(-) fd3bb1d Removed a and b. a | 0 b | 0 2 files changed, 0 insertions(+), 0 deletions(-) 6e0d6f4 Adding readme.txt readme.txt | 1 + 1 file changed, 1 insertion(+) a343843 (tag: four_files_galore) Adding four empty files. a | 0 b | 0 c | 0 d | 0 4 files changed, 0 insertions(+), 0 deletions(-) 834601b Adding b variable. math.sh | 1 + 1 file changed, 1 insertion(+) 68d38c6 This is the second commit. math.sh | 1 + 1 file changed, 1 insertion(+) d314c77 This is the first commit. math.sh | 1 + 1 file changed, 1 insertion(+)
|