This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| git init | |
| echo commit 1 > readme.txt | |
| git add readme.txt | |
| git commit -m "first" | |
| echo commit 2 > remove_me.txt | |
| git add remove_me.txt | |
| git commit -m "second" | |
| echo commit 3 > some_file.txt | |
| git add some_file.txt | |
| git commit -m "third" |