You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Oct 9, 2021. It is now read-only.
I was installing and configuring the fish integration and did a bit o work to extract the git repository main folder as project.
This is from your site guide:
set -l project
if echo (pwd) | grep -qEi "^/Users/$USER/Sites/"
set project (echo (pwd) | sed "s#^/Users/$USER/Sites/\\([^/]*\\).*#\\1#")
else
set project "Terminal"
end
And I made a change and if I am into a git repository to send the root folder of the repository as project:
set -l project
if git::is_repo
set wp_root_folder (command git rev-parse --show-toplevel ^/dev/null)
set wp_parent_root_folder (dirname $wp_root_folder)
set project (echo $wp_root_folder | sed -e "s|$wp_parent_root_folder/||")
else
set project "Terminal"
end
The text was updated successfully, but these errors were encountered:
Hi,
I was installing and configuring the
fish
integration and did a bit o work to extract the git repository main folder as project.This is from your site guide:
And I made a change and if I am into a git repository to send the root folder of the repository as project:
The text was updated successfully, but these errors were encountered: