Personal dotfiles for Linux, mostly for Nixpkgs/NixOS-based and Termux setups. Mirrored using GitLab's push mirroring feature. gitlab.com/andreijiroh-dev/dotfiles
linux dotfiles
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

feat(cli-aliases): update aliases in GitHub and GitLab CLI

To ease migration to GitLab and the official CLI itseld,
I made 'gh mr' as alias to 'gh pr'.

Notes:
* `glab` is now officially adopted by GitLab team since 2022-12-07!
See https://about.gitlab.com/blog/2022/12/07/introducing-the-gitlab-cli/
and https://about.gitlab.com/releases/2022/12/22/gitlab-15-7-released/
for all the details.

Signed-off-by: Andrei Jiroh Halili <ajhalili2006@gmail.com>

+4
+2
.config/gh/config.yml
··· 9 9 # Aliases allow you to create nicknames for gh commands 10 10 aliases: 11 11 co: pr checkout 12 + clone: repo clone 13 + mr: pr 12 14 # The path to a unix socket through which send HTTP connections. If blank, HTTP traffic will be handled by net/http.DefaultTransport. 13 15 http_unix_socket: 14 16 # What web browser gh should use when opening URLs. If blank, will refer to environment.
+2
.config/glab-cli/aliases.yml
··· 1 1 ci: pipeline ci 2 2 co: mr checkout 3 + clone: repo clone 4 + pr: mr