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
git converts the relative path to an absolute one:
$ git clone one two
Cloning into 'two'...
done.
$ cd two/
$ git remote -v
origin /tmp/one (fetch)
origin /tmp/one (push)
$ git pull
Already up to date.
However with gig it's not converted:
$ gig clone one two
Enumerating objects: 3, done.
Counting objects: 100% (3/3), done.
Total 3 (delta 0), reused 0 (delta 0), pack-reused 0
$ cd two
$ git remote -v
origin one (fetch)
origin one (push)
$ gig pull
Error: repository not found
git converts the relative path to an absolute one:
However with gig it's not converted:
I'd rather fix this in go-git, especially since the function to check for local URL is part of an internal package.
The text was updated successfully, but these errors were encountered: