mirror of
https://git.sr.ht/~seirdy/seirdy.one
synced 2024-11-23 21:02:09 +00:00
Remove unused class
This commit is contained in:
parent
3d5f9ad1e3
commit
b12bdb543f
1 changed files with 2 additions and 2 deletions
|
@ -24,7 +24,7 @@ Adding remotes
|
||||||
|
|
||||||
This process should pretty straightforward. You can run `git remote add` (see `git-remote(1)`) or edit your repo's `.git/config` directly:
|
This process should pretty straightforward. You can run `git remote add` (see `git-remote(1)`) or edit your repo's `.git/config` directly:
|
||||||
|
|
||||||
```gitconfig
|
```
|
||||||
[remote "origin"]
|
[remote "origin"]
|
||||||
url = git@git.sr.ht:~seirdy/seirdy.one
|
url = git@git.sr.ht:~seirdy/seirdy.one
|
||||||
fetch = +refs/heads/*:refs/remotes/origin/*
|
fetch = +refs/heads/*:refs/remotes/origin/*
|
||||||
|
@ -43,7 +43,7 @@ Seamless pushing and pulling
|
||||||
|
|
||||||
Having multiple remotes is fine, but pushing to and fetching from all of them can be slow. Two simple git aliases fix that:
|
Having multiple remotes is fine, but pushing to and fetching from all of them can be slow. Two simple git aliases fix that:
|
||||||
|
|
||||||
```gitconfig
|
```
|
||||||
[alias]
|
[alias]
|
||||||
pushall = !git remote | grep -E 'origin|upstream' | xargs -L1 -P 0 git push --all --follow-tags
|
pushall = !git remote | grep -E 'origin|upstream' | xargs -L1 -P 0 git push --all --follow-tags
|
||||||
fetchall = !git remote | grep -E 'origin|upstream' | xargs -L1 -P 0 git fetch
|
fetchall = !git remote | grep -E 'origin|upstream' | xargs -L1 -P 0 git fetch
|
||||||
|
|
Loading…
Reference in a new issue