Commit the changes
- Commit the changes using the terminal (alt + shift + m). (but be careful about adding all!)
# Select all changes
git add .
# Commit the changes
git commit -m "Creating the strsplit1 function"
# Show changes applied
git diff HEAD~1..HEAD