mirror of
https://github.com/neovim/neovim.git
synced 2025-10-21 17:21:49 +00:00
Merge pull request #4636 from blueyed/vim-patch-fix-find_git_remote
vim-patch.sh: fix/improve pattern with find_git_remote
This commit is contained in:
@@ -87,7 +87,8 @@ commit_message() {
|
||||
}
|
||||
|
||||
find_git_remote() {
|
||||
git remote -v | awk '/neovim\/neovim.*(fetch)/{print $1}'
|
||||
git remote -v \
|
||||
| awk '$2 ~ /github.com[:/]neovim\/neovim/ && $3 == "(fetch)" {print $1}'
|
||||
}
|
||||
|
||||
assign_commit_details() {
|
||||
|
Reference in New Issue
Block a user