nboard/README.md

20 lines
378 B
Markdown
Raw Permalink Normal View History

2020-03-21 22:29:36 +00:00
# nboard
2020-03-27 00:35:03 +00:00
python curses based yourwalloftext clone
2020-07-25 01:56:27 +00:00
## help
read the --help text lol
2020-03-21 22:19:10 +00:00
2020-07-25 01:56:27 +00:00
## managing remotes
to get more remotes, you can
```bash
for i in $(cat remotes.txt); do echo $i | xargs git remote add 2>/dev/null || echo $i | xargs git remote set-url ; done
```
(command stolen from gitbbs lol)
which will go through all the remotes in remotes.txt and add them to git
2020-03-21 22:19:10 +00:00