📄 apply-patch
字号:
#! /bin/sh# debug#set -x# stop on errorsset -e# repository directoryrepo_dir=`pwd`# show usageshow_usage(){ cat << EOFusage: apply-patchImports netware/current-changes.patch so that current changesfor the platform are present on the local repository.Use from the root directory of the repository, with BitKeeperinstalled.EOF exit 0;}if test $1 || test -z $BK_USERthen show_usagefiecho "starting patch..."echo "user: $BK_USER"# import patch# Note: In future this should be changed to check whether# the repo already has this patchbk import -tpatch $repo_dir/netware/current-changes.patch $repo_dir
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -