Created
July 29, 2024 16:52
-
-
Save fmitha/129888a702ef74c7850b6e3d55d2ce64 to your computer and use it in GitHub Desktop.
This file contains 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
rm -rf amend+log | |
hg init amend+log | |
cd amend+log | |
echo "First line of foo" >> foo | |
hg add foo; hg ci -m "Add foo" | |
hg topics mytopic | |
echo "First line of bar" >> bar | |
hg add bar; hg ci -m "Add bar" | |
echo "Second line of bar" >> bar | |
hg amend -m "Second line of bar" | |
echo "Third line of bar" >> bar | |
hg amend -m "Third line of bar" | |
echo "Second line of foo" >> foo | |
hg amend -m "Second line of foo" | |
hg --hidden log -T status -vp | |
cd .. | |
rm -rf amend+log |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment