Skip to content

Latest commit

 

History

History
20 lines (11 loc) · 456 Bytes

git.md

File metadata and controls

20 lines (11 loc) · 456 Bytes

git

git the last commit (see what i did there ;)

git log --format="%H" -n 1

sync with other repos (bitbucket)

note: bitbucket has a github importer, which might be easier if you're do a full sync of all your repos.

git remote add bitbucket https://[email protected]/booyaa/overflow.git
git push -u origin --all # pushes up the repo and its refs for the first time
git push -u origin --tags # pushes up any tags

github release