Git
Last updated
git branch -d wtfBranchgit branch -D wtfBranchgit push fooRemote :wtfBranch
git push fooRemote --delete wtfBranchgit fetch fooRemote remoteBranch:localBranchgit pull -r
git pull --rebasegit push --all origin git tag wtf.foo.bar git push origin --tags git svn clone SVN_URL REPO_NAME git filter-branch --commit-filter '
if [ "$GIT_AUTHOR_EMAIL" = "foo@26f1cbcb-2ce9-9940-8e71-79534620cc70" ];
then
GIT_AUTHOR_NAME="FOO";
GIT_AUTHOR_EMAIL="foo@DontCareAbout.us";
git commit-tree "$@";
else
git commit-tree "$@";
fi' HEAD