Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
bryango committed Mar 23, 2023
1 parent 4279ce6 commit a214856
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,31 @@
# aur.git

This is an experimental mirror of the aur.git repository backing [the AUR](https://aur.archlinux.org).

**This is a fork,** to host personalizations of packages.

## as a remote of `~/.cache/yay/$PKG`

Example `.git/config` of `~/.cache/yay/texlive-installer`:

```gitconfig
[core]
repositoryformatversion = 0
filemode = true
bare = false
logallrefupdates = true
[remote "origin"]
url = https://aur.archlinux.org/texlive-installer.git
fetch = +refs/heads/*:refs/remotes/origin/*
[branch "master"]
remote = origin
merge = refs/heads/master
## ... above generated by yay
## ... below added by user
[remote "p13n"]
url = [email protected]:bryango/aur.git
fetch = +refs/heads/texlive-installer:refs/remotes/p13n/texlive-installer ## restrict fetch heads
push = p13n/texlive-installer ## push to branch: texlive-installer
[remote]
pushdefault = p13n ## push to remote: p13n
```

0 comments on commit a214856

Please sign in to comment.