mirror of
https://github.com/stefanzweifel/git-auto-commit-action.git
synced 2024-11-06 02:08:05 +00:00
Fix checking out branch names with / chars
If git can't automatically figure out if the argument is a branch or a path, it will need to be told explicitly by using `--`: Use '--' to separate paths from revisions, like this: 'git <command> [<revision>...] -- [<file>...]' Fixes: #106
This commit is contained in:
parent
9c1e5d1c6a
commit
f905f00706
@ -43,7 +43,7 @@ _switch_to_branch() {
|
|||||||
git fetch;
|
git fetch;
|
||||||
|
|
||||||
# Switch to branch from current Workflow run
|
# Switch to branch from current Workflow run
|
||||||
git checkout $INPUT_BRANCH;
|
git checkout "$INPUT_BRANCH" --;
|
||||||
}
|
}
|
||||||
|
|
||||||
_add_files() {
|
_add_files() {
|
||||||
|
Loading…
Reference in New Issue
Block a user