We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c0d8f9c commit 21b8c87Copy full SHA for 21b8c87
home/bin/ff
@@ -95,6 +95,8 @@ def main():
95
96
# If --run/--debug matches, runs the specified command.
97
if args.run == lineno:
98
+ if line.startswith(' not '):
99
+ line = line[idx+5:]
100
if (idx := line.find('|')) >= 0:
101
line = line[:idx]
102
line = f'{build_dir}/bin/{line}'
home/bin/git-use
@@ -3,4 +3,4 @@ if [[ -z $1 ]]; then
3
echo git use $1
4
exit 1
5
fi
6
-git rebase $(git rev-parse --abbrev-ref origin/HEAD) "$1"
+git rebase $(git rev-parse --abbrev-ref origin/HEAD) "$1" "${@:2}"
0 commit comments