Skip to content

Instantly share code, notes, and snippets.

@janash
Created August 17, 2021 01:32
Show Gist options
  • Save janash/216372b3e8ad84f17bc9250ea1cbc81d to your computer and use it in GitHub Desktop.
Save janash/216372b3e8ad84f17bc9250ea1cbc81d to your computer and use it in GitHub Desktop.
history
mkdir hello_world
cd hello_world
echo "HELLO WORLD" > hello.txt
rm hello.txt
cd ..
rm -r hello_world
git clone https://github.com/msse-2021-bootcamp/lessons.git
cd lessons
git checkout -b my-new-branch
echo "This line will be at the end of the readme" >> README.md
git status
git diff
git add .
git commit -m "update readme"
git push origin my-new-branch
cd ..
rm -rf lessons
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment