mirror of
https://github.com/git-learning-game/oh-my-git.git
synced 2024-11-15 19:04:57 +01:00
5 lines
174 B
Text
5 lines
174 B
Text
echo -e "bread\ntomato\nbread" > sandwich
|
|
git add sandwich
|
|
git commit -m "Initial sandwich"
|
|
echo -e "bread\ntomato\ncucumber\nbread" > sandwich
|
|
git commit -am "Add cucumber"
|