Skip to content

Instantly share code, notes, and snippets.

View MarioBlazek's full-sized avatar
🎯
Focusing

Mario Blazek MarioBlazek

🎯
Focusing
View GitHub Profile
git rebase master
git checkout feature_readme_changes_for_blog_post
git push origin master
git merge upstream/master
git checkout master
git fetch upstream
git remote add upstream [email protected]:netgen/TagsBundle.git
git remote -v feature_readme_changes_for_blog_post
origin [email protected]:MarioBlazek/TagsBundle.git (fetch)
origin [email protected]:MarioBlazek/TagsBundle.git (push)
upstream [email protected]:netgen/TagsBundle.git (fetch)
upstream [email protected]:netgen/TagsBundle.git (push)
~/P/TagsBundle ❯❯❯ git remote -v feature_readme_changes_for_blog_post
origin [email protected]:MarioBlazek/TagsBundle.git (fetch)
origin [email protected]:MarioBlazek/TagsBundle.git (push)
git push origin feature_readme_changes_for_blog_post
echo "This is some content added for testing purposes by Mario." >> README.md
git commit -m "Add some text to the end of README.md file"