César Román

Results 9 comments of César Román

Since `ugit` relies upon `fzf` there is one small issue when Git Bash is used under Windows (not WSL). ```bash $ mkdir ~/git-repo $ cd ~/git-repo/ $ git init Initialized...

Yes, Windows Terminal is the way to go for a non-WSL setup in Windows.

> Can you also tell me how did you manage to install ugit on windows? I already had installed Windows Terminal and Git, then I installed `fzf`. Here I will...

Is it possible to side-load this Portfile and test it? I switched from Homebrew and I do miss having the ability to install `pyenv`, as having to install `py-pip`, `py-setuptools`...

I created the local repo, and installed `pyenv` after making a few changes to your latest Portfile: Changes: ``` github.setup pyenv pyenv 2.3.5 v ... categories python ... github.tarball_from archive...

On a second thought, I have considered keeping the `latest` tag but it will be pointing to the latest stable release for Python 3, which will be 3.12.0 whenever it...

Has anyone considered using `uv pip compile`? I just tried it in one of my projects and it worked without issues.

I had the same problem and fixed it by removing the `.git` directory. ```yml - uses: actions/upload-artifact@v4 with: name: my-artifact path: | ${{ github.workspace }} !.git/ ``` For this action,...