You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I want to create a way for users to call jira alias new and create aliases and then jira alias my-alias to use them.
Creating an alias will work very similarly to unix alias, you pick a command and args and it will almost be a replacement of what you type, minus the whole alias command part
Reason being, there is so much custom stuff in jira it's hard to add some commands that just work for everybody (like searches) since statuses etc.. can be different.
Example usage:
jira alias new my-alias
Input command name
lookup
input command args assignee = foobar AND blah == custom_value Alias my-alias created
Run jira alias my-alias and it would actually run jira lookup assignee = foobar AND blah == custom_value
I might also alias "a" so you can do jira a foo since typing alias is long and the point is to make it quick
The text was updated successfully, but these errors were encountered:
Keep in mind, those using, you can always create your own OS alias for commands so this will probably be a low priority feature.
ex in linx you could add something to your bash profile like: alias stories='jira me' then just type stories. This can be done for any search criteria or tweaked commands since most support searching
I want to create a way for users to call
jira alias new
and create aliases and thenjira alias my-alias
to use them.Creating an alias will work very similarly to unix alias, you pick a command and args and it will almost be a replacement of what you type, minus the whole alias command part
Reason being, there is so much custom stuff in jira it's hard to add some commands that just work for everybody (like searches) since statuses etc.. can be different.
Example usage:
jira alias new my-alias
Run
jira alias my-alias
and it would actually runjira lookup assignee = foobar AND blah == custom_value
I might also alias "a" so you can do
jira a foo
since typing alias is long and the point is to make it quickThe text was updated successfully, but these errors were encountered: