diff options
author | amine <hilalyamine@gmail.com> | 2019-10-24 20:16:51 +0200 |
---|---|---|
committer | amine <hilalyamine@gmail.com> | 2019-11-09 13:26:52 +0100 |
commit | baefa687b582632cd9cc21b945bc074c833f5389 (patch) | |
tree | ae2d8a8e918409a0db7d6949177df3660745b09d /doc/md | |
parent | 3984919a3df95b8ec203bcb82b66c9c2270579c7 (diff) | |
download | git-bug-baefa687b582632cd9cc21b945bc074c833f5389.tar.gz |
tokens: use a hash as token identifier instead of the token it self
Diffstat (limited to 'doc/md')
-rw-r--r-- | doc/md/git-bug_bridge.md | 2 | ||||
-rw-r--r-- | doc/md/git-bug_bridge_token.md | 26 | ||||
-rw-r--r-- | doc/md/git-bug_bridge_token_add.md | 26 | ||||
-rw-r--r-- | doc/md/git-bug_bridge_token_rm.md | 22 |
4 files changed, 75 insertions, 1 deletions
diff --git a/doc/md/git-bug_bridge.md b/doc/md/git-bug_bridge.md index 7731ff4b..a965074d 100644 --- a/doc/md/git-bug_bridge.md +++ b/doc/md/git-bug_bridge.md @@ -23,5 +23,5 @@ git-bug bridge [flags] * [git-bug bridge pull](git-bug_bridge_pull.md) - Pull updates. * [git-bug bridge push](git-bug_bridge_push.md) - Push updates. * [git-bug bridge rm](git-bug_bridge_rm.md) - Delete a configured bridge. -* [git-bug bridge token](git-bug_bridge_token.md) - Configure and use bridge tokens. +* [git-bug bridge token](git-bug_bridge_token.md) - List all stored tokens. diff --git a/doc/md/git-bug_bridge_token.md b/doc/md/git-bug_bridge_token.md new file mode 100644 index 00000000..5e6baa26 --- /dev/null +++ b/doc/md/git-bug_bridge_token.md @@ -0,0 +1,26 @@ +## git-bug bridge token + +List all stored tokens. + +### Synopsis + +List all stored tokens. + +``` +git-bug bridge token [flags] +``` + +### Options + +``` + -l, --local + -g, --global + -h, --help help for token +``` + +### SEE ALSO + +* [git-bug bridge](git-bug_bridge.md) - Configure and use bridges to other bug trackers. +* [git-bug bridge token add](git-bug_bridge_token_add.md) - Create and store a new token +* [git-bug bridge token rm](git-bug_bridge_token_rm.md) - Remove token by Id. + diff --git a/doc/md/git-bug_bridge_token_add.md b/doc/md/git-bug_bridge_token_add.md new file mode 100644 index 00000000..6ef705d0 --- /dev/null +++ b/doc/md/git-bug_bridge_token_add.md @@ -0,0 +1,26 @@ +## git-bug bridge token add + +Create and store a new token + +### Synopsis + +Create and store a new token + +``` +git-bug bridge token add [flags] +``` + +### Options + +``` + -g, --global + -v, --value string + -t, --target string + -s, --scopes stringArray + -h, --help help for add +``` + +### SEE ALSO + +* [git-bug bridge token](git-bug_bridge_token.md) - List all stored tokens. + diff --git a/doc/md/git-bug_bridge_token_rm.md b/doc/md/git-bug_bridge_token_rm.md new file mode 100644 index 00000000..52417a9c --- /dev/null +++ b/doc/md/git-bug_bridge_token_rm.md @@ -0,0 +1,22 @@ +## git-bug bridge token rm + +Remove token by Id. + +### Synopsis + +Remove token by Id. + +``` +git-bug bridge token rm [flags] +``` + +### Options + +``` + -h, --help help for rm +``` + +### SEE ALSO + +* [git-bug bridge token](git-bug_bridge_token.md) - List all stored tokens. + |