Skip to content

Instantly share code, notes, and snippets.

View shawn0915's full-sized avatar
:octocat:
Focusing

Shawn Yan shawn0915

:octocat:
Focusing
View GitHub Profile
@shawn0915
shawn0915 / bzr-to-git.sh
Created November 23, 2018 08:52
Convert Bazaar repository to Git repository
#!/bin/bash
set -e
if [ $# != 1 ]; then
echo "Usage: ./bzr-to-git.sh bzr_repo/"
exit -1
fi
# 切换进 bzr 仓库
cd "$1"