{"id":16057941,"url":"https://github.com/pascalgn/development-tools","last_synced_at":"2026-05-05T21:33:54.994Z","repository":{"id":120605492,"uuid":"98094255","full_name":"pascalgn/development-tools","owner":"pascalgn","description":"Command line tools helpful for software development","archived":false,"fork":false,"pushed_at":"2020-05-03T12:15:35.000Z","size":21,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-04-05T08:14:53.645Z","etag":null,"topics":["command-line-tool","git","maven","maven-repository"],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/pascalgn.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2017-07-23T11:47:55.000Z","updated_at":"2023-03-05T01:40:53.000Z","dependencies_parsed_at":null,"dependency_job_id":"00b750de-0029-43bd-b6c0-07295f3ca164","html_url":"https://github.com/pascalgn/development-tools","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/pascalgn/development-tools","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pascalgn%2Fdevelopment-tools","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pascalgn%2Fdevelopment-tools/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pascalgn%2Fdevelopment-tools/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pascalgn%2Fdevelopment-tools/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/pascalgn","download_url":"https://codeload.github.com/pascalgn/development-tools/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pascalgn%2Fdevelopment-tools/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32669431,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-05T11:29:49.557Z","status":"ssl_error","status_checked_at":"2026-05-05T11:29:48.587Z","response_time":54,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["command-line-tool","git","maven","maven-repository"],"created_at":"2024-10-09T03:05:31.455Z","updated_at":"2026-05-05T21:33:54.977Z","avatar_url":"https://github.com/pascalgn.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# development-tools\n\nCommand line tools helpful for software development.\n\n## Installation\n\nUse `make install` to install the scripts into `$HOME/bin`.\nIf you want to install them for all users, use `make install PREFIX=/usr/local/bin`.\n\n## Usage\n\n### abbreviate\n\nAbbreviate long lines:\n\n    $ cat access.log | abbreviate\n\n### git-ghpr\n\nPush the current local branch to the matching remote branch and open the GitHub page to create a new pull request:\n\n    $ git ghpr\n\n### git-import-repository\n\nCopy another repository into the current repository, including git history:\n\n    $ ls -a\n    .git    README.md\n    $ ls -a ../other-repo\n    .git    test1.txt    test2.txt\n    $ git-import-repository ../other-repo\n    $ ls -a ./other-repo\n    test1.txt    test2.txt\n\n### git-merge-theirs\n\nMerge another branch, using strategy `theirs` to use all changes from their branch:\n\n    $ git checkout my-branch\n    $ git merge -s theirs their-branch\n\n### git-show-merged-branches\n\nShow branches merged into the current branch:\n\n    $ git show-merged-branches\n\n### git-show-unused-branches\n\nShow all branches, sorted by last commit date:\n\n    $ git show-unused-branches\n\n### ide-delete-eclipse-settings and ide-delete-intellij-settings\n\nDelete IDE configuration files, prompting before deleting:\n\n    $ ide-delete-eclipse-settings\n    $ ide-delete-intellij-settings\n\n### java-filter-stacktrace\n\nFilter Java stack traces by only showing lines from the `com.example` package:\n\n    $ cat exception.log | java-filter-stacktrace com.example\n\n### kubectl-generate-context-aliases\n\nGenerate `kubectl` alias commands based on the existing contexts:\n\n    $ eval \"$(kubectl-generate-context-aliases)\"\n    $ kubectl-docker-for-desktop get all\n\n### mvn-download-artifact\n\nDownload a Maven artifact to your local repository:\n\n    $ mvn-download-artifact commons-io:commons-io:2.5\n\n### mvn-parse-log\n\nShow a condensed version of the Maven log output:\n\n    $ mvn clean install \u0026\u003e maven.log\n    $ mvn-parse-log maven.log\n\n### mvn-parse-pom\n\nParse Maven POM files:\n\n    $ mvn-parse-pom ~/.m2/repository/commons-io/commons-io/2.5/commons-io-2.5.pom\n    commons-io:commons-io:2.5\n\n### mvn-parse-test-run\n\nParse Maven output and report test duration:\n\n    $ cat mvn.log | mvn-parse-test-run\n    Count,Failures,Errors,Skipped,Duration,Test\n    2,0,0,0,0.987,com.example.ServiceTest\n    5,0,0,0,0.654,com.example.DaoTest\n\n### mvn-upload-artifact\n\nUpload a Maven artifact to the remote repository:\n\n    $ ls\n    commons-io-2.5.pom    commons-io-2.5.jar    commons-io-2.5.jar.sha1\n    $ mvn-upload-artifact http://username:password@localhost:8080/ commons-io-2.5.pom\n\n### mvn-upload-repository\n\nUpload multiple artifacts to the remote repository:\n\n    $ mvn-upload-repository http://username:password@localhost:8080/ commons-io/commons-io\n\n## License\n\nAll tools are licensed under the MIT License\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpascalgn%2Fdevelopment-tools","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpascalgn%2Fdevelopment-tools","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpascalgn%2Fdevelopment-tools/lists"}