Git Product home page Git Product logo

gh-tidy's People

Contributors

haywardmorihara avatar landfillbaby avatar marcusramberg avatar ngoue avatar pritamrungta avatar spoilsportmotors avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

gh-tidy's Issues

New Tidy Feature: Rebase Branches

ALL branches? Or only ones w/ recent activity?

What to do in the case where conflicts need to be resolved? Do it there on the spot?

Merge as an alternate option? I know a good number (if not a majority of developers) prefer merging to rebasing...

Make it configurable? Where is the best place to put that configuration?

Skip deleting trunk branch

Hi! In my case, I have some PRs from main -> dev branches for keeping those up to date.
Is it possible to wrap the entire contents below in a condition like (branch != trunk_branch)

gh-tidy/gh-tidy

Lines 136 to 144 in b1c79a6

# TODO Make this work with collaborative branches where you aren't the author
merged_branch=$(gh pr list --author @me --state merged --limit 1 --search head:$branch --json headRefName --jq '.[].headRefName')
if [ ! -z ${merged_branch} ]; then
read -p $'\e[93m'"Branch ${merged_branch} has been merged - delete it? (y/n) "$'\e[0m' -n 1 -r
echo
if [[ $REPLY =~ ^[Yy]$ ]]; then
git branch -D "${merged_branch}" || true
fi
fi

Windows comptaibility?

I'm surprised this isn't more of a documented issue? The official docs about developing extensions recommends using bash...

I'd want to see if there's an established best practice around this.

At the least, would be nice to document that this uses bash and doesn't work with Windows

Add support for secure token storage

Token storage change in latest release of gh

This is a message from the GitHub CLI team, maintainers of gh, writing to inform you that the most recent release of gh contains changes which may affect your extension. The latest release introduces the feature of storing authentication tokens in the system keyring (encrypted storage) instead of in a plain text file.
The keyrings that are supported are:

  • Keychain on macOS

  • GNOME Keyring on Linux (Secret Service dbus interface)

  • Wincred on Windows

This has huge security benefits for the users of our tool and was one of our oldest outstanding issues. Unfortunately this change has the potential to break extensions that rely on utilizing the users authentication token to work.

In order to have continued compatibility with gh there are some actions you, as an extension author, need to take. These actions will depend on the implementation of your extension.

Extensions built in Go using go-gh:

  1. Upgrade your go-gh version to v1.2.1, the latest version.

  2. Verify that in your extension retrieval of the user authentication token is done using the auth.TokenForHost function.

    • If you were previously accessing the authentication token using any other method it will no longer work.
    • Automatic resolution of the authentication token when using the API clients will continue to work without changes.

All other extensions:

  1. Verify that in your extension retrieval of the user authentication token is done by shelling out to the gh auth token command.

    • If you were previously accessing the authentication token using the gh config get command, reading the configuration file directly, or any other methods it will no longer work.

As of right now storing the authentication token in the system keyring is an opt-in feature, but in the near future it will be required and at that point if the changes above are not made then your extension will be broken for all users. If you have any questions/concerns about this change please feel free to open a discussion in the gh repo.

Thanks,
The GitHub CLI Team

Feature: Make tidy steps configurable

Make it so users can opt-out of a tidy step, because not everyone will want the same things

Bonus points if we can make it so developers can write there own and have the tidy script call it

Configuration: Branches to be skipped for deletion, rebase, etc

See #41 for the genesis of the idea

Make it so users can opt-out of a tidy step, because not everyone will want the same things

Different developers use branches in different ways - it would be nice if they configure gh tidy so that they could specify (in a local file) what branches should be considered for deletion, rebase, or any other tidy actions

Error attempting to prune local branches

Pretty likely that someone's used some unexpected characters in branch names.

I'm getting an error attempting to tidy a repo:

Pruning local branches that show as 'merged' to local ...
fatal: malformed object name --format=%(refname:short)

If there is some way to get more info -- like what the branch name is that's causing trouble -- that would be super-helpful. There's no more information, and tidy continues on (yay!).

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.