File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 44
44
echo -e " \nChecking the state of the current branch"
45
45
46
46
isDefaultBranch || _exit 1 " Current branch is not the default branch"
47
- isCleanBranch || _exit 1 " Current branch is not clean"
47
+ # isCleanBranch || _exit 1 "Current branch is not clean"
48
48
# To repair, run: git cherry-pick --abort &>/dev/null; git fetch origin && git reset --hard origin/$(git symbolic-ref --short HEAD) && git clean -fd; git checkout main
49
49
50
50
sourceGh=$( getGHCode " $number " )
77
77
echo -e " \nChecking out target branch"
78
78
79
79
git checkout $targetBranch
80
- isCleanBranch || _exit 1 " Current branch is not clean"
80
+ # isCleanBranch || _exit 1 "Current branch is not clean"
81
81
# To repair, run: git cherry-pick --abort &>/dev/null; git fetch origin && git reset --hard origin/$(git symbolic-ref --short HEAD) && git clean -fd; git checkout main
82
82
83
83
targetGh=" "
You can’t perform that action at this time.
0 commit comments