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
Customization option of url needed since the keyword "tree" is added to the url by default it does not work with some repo websites, which is yona in my case.
This is the output when i type git open -p
➜ git open -p
http://yona.linewalks.com/myName/myRepoName/tree/myBranchName
but to work in yona, the url has to be the following below. http://yona.linewalks.com/myName/myRepoName/code/myBranchName
So, just adding the customization to the url, it might work with other platforms too.
I suggest the following options as examples.
➜ git open --default_url
http://yona.linewalks.com/myName/myRepoName ( 0 )
http://yona.linewalks.com/myName/myRepoName/tree/myBranchName ( x )
-> git open --remove_keyword=tree
http://yona.linewalks.com/myName/myRepoName/myBranchName ( O )
http://yona.linewalks.com/myName/myRepoName/tree/myBranchName ( x )
-> git open --replace_keyword=tree --replace_with=code
http://yona.linewalks.com/myName/myRepoName/code/myBranchName ( O )
http://yona.linewalks.com/myName/myRepoName/tree/myBranchName ( x )
The text was updated successfully, but these errors were encountered:
Customization option of url needed since the keyword "tree" is added to the url by default it does not work with some repo websites, which is yona in my case.
This is the output when i type
git open -p
but to work in yona, the url has to be the following below.
http://yona.linewalks.com/myName/myRepoName/code/myBranchName
So, just adding the customization to the url, it might work with other platforms too.
I suggest the following options as examples.
The text was updated successfully, but these errors were encountered: