For releases since v1.6.0.
go install github.com/hekmekk/git-team@latest
See homebrew-git-team for the formula.
- Add tap
brew tap hekmekk/git-team
- Install git-team
Install stable release. Use --HEAD
in case you want to install from the latest commit.
brew install git-team
- Pre-requisites
sudo apt install curl gnupg lsb-release
The debian package is made available via apt-sourc.es.
- Add apt-sourc.es GPG Key
curl -fsSL https://apt-sourc.es/admin/gpg.asc | sudo apt-key add -
- Setup the
apt
repository
echo "deb [arch=amd64] https://apt-sourc.es/deb/hekmekk/git-team stable main" | sudo tee /etc/apt/sources.list.d/git-team.list
- Update the
apt
package index and installgit-team
sudo apt update && sudo apt install git-team
ansible-playbook git-team.yml --ask-become-pass
-
Download the latest release
-
Install it manually
sudo dpkg -i /path/to/downloaded/release.deb
ansible-playbook git-team.yml --ask-become-pass
-
Download the latest release
-
Import git-team signing key
curl --silent https://api.github.com/users/hekmekk/gpg_keys | jq -r '.[] | select(.key_id == "12BB70967049E845") | .raw_key' > git-team-signing-key.asc
sudo rpm --import git-team-signing-key.asc
- Check if Signature is ok
rpm -v --checksig /path/to/downloaded/release.rpm
- Install
sudo rpm -i /path/to/downloaded/release.rpm
@steinex maintains the template.
sudo xbps-install git-team
yay git-team-git
{ pkgs, ... }:
{
# Either for all users
environment.systemPackages = with pkgs; [ git-team ];
# Or for an explicit user
users.users."youruser".packages = with pkgs; [ git-team ];
}
make
sudo make install
Check if a script is available for your shell
git-team completion
Source the appropriate script, e.g.:
source <(git-team completion bash)