{"id":19729568,"url":"https://github.com/muttalipkucuk/commands","last_synced_at":"2026-06-09T18:31:18.894Z","repository":{"id":173163163,"uuid":"141592083","full_name":"muttalipkucuk/commands","owner":"muttalipkucuk","description":"CLI: General, Google Cloud, Git, Kubernetes, Maven, sbt.","archived":false,"fork":false,"pushed_at":"2020-04-09T08:46:34.000Z","size":412,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-11-21T18:02:27.739Z","etag":null,"topics":["shell"],"latest_commit_sha":null,"homepage":"","language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/muttalipkucuk.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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":"2018-07-19T14:35:36.000Z","updated_at":"2020-04-09T08:46:36.000Z","dependencies_parsed_at":null,"dependency_job_id":"1a233d23-e0b9-42dc-8d7f-6e1da23af7fd","html_url":"https://github.com/muttalipkucuk/commands","commit_stats":null,"previous_names":["muttalipkucuk/commands"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/muttalipkucuk/commands","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/muttalipkucuk%2Fcommands","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/muttalipkucuk%2Fcommands/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/muttalipkucuk%2Fcommands/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/muttalipkucuk%2Fcommands/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/muttalipkucuk","download_url":"https://codeload.github.com/muttalipkucuk/commands/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/muttalipkucuk%2Fcommands/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34121020,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-09T02:00:06.510Z","response_time":63,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["shell"],"created_at":"2024-11-12T00:12:51.511Z","updated_at":"2026-06-09T18:31:18.869Z","avatar_url":"https://github.com/muttalipkucuk.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# Index\n\n| Tool                          | Command   |\n| ----------------------------- |:---------:|\n| [Shell](#shell)               |           |\n| [Google Cloud](#googlecloud)  | `...`     |\n| [Git](#git)                   | `git`     |\n| [Kubernetes](#kubernetes)     | `kubectl` |\n| [Maven](#maven)               | `mvn`     |\n| [npm](#npm)                   | `npm`     |\n| [sbt](#sbt)                   | `sbt`     |\n| [...](#...)                   | `...`     |\n\n\n## Shell\n\n```\ncat file1.txt\ncurl www.example.com\nexit\nexport -p\nexport NAME_VARIABLE=value\nnano .bash_profile\necho -n 'SomePassword123' | base64\nprintenv\ngrep -Hrn 'search_term' /search-folder\n```\n\n\n## GoogleCloud\n\n```\ngcloud container clusters get-credentials \u003ccluster-name\u003e --zone \u003czone\u003e --project \u003cproject\u003e\n```\n\n\n## Git\n\n```\ngit config --global user.name \"muttalipkucuk\"\ngit config --global user.email muttalip@example.com\ngit init\ngit clone /path/to/repository\ngit clone username@host:/path/to/repository\ngit add *\ngit add \u003cfile-name\u003e\ngit add . -p\ngit commit -m \"Some message\"\ngit push\ngit push origin master\ngit push origin \u003cbranch-name\u003e\ngit push origin :\u003cbranchname\u003e\ngit status\ngit remote add origin \u003cserver\u003e\ngit remote -v\ngit checkout \u003cbranchname\u003e\ngit checkout -b \u003cbranch-name\u003e\ngit checkout -- \u003cfilename\u003e\ngit branch\ngit branch -d \u003cbranch-name\u003e\ngit pull\ngit merge \u003cbranch-name\u003e\ngit fetch\ngit fetch origin\ngit diff\ngit diff \u003csource-branch\u003e \u003ctarget-branch\u003e\ngit tag 1.0.0 \u003ccommit-ID\u003e\ngit log\ngit reset --hard origin/master\ngit stash save \"some message\"\ngit stash list\ngit stash apply stash@{n}\ngit diff --staged (or git diff --cached)\ngit checkout HEAD -- my-file.txt\ngit clone https://oauth2:\u003ctoken-eg-personal-access-token\u003e@\u003cproject-dot-git\u003e\n```\n\nMerge master into (existing) branch `myBranch`:\n```\ngit checkout myBranch\ngit pull origin master\n```\n\n## Kubernetes\n\n```\nkubectl [command] [TYPE] [NAME] [flags]\nkubectl version\nkubectl cluster-info\nkubectl get\nkubectl get pods\nkubectl get pods -l label-name\nkubectl get deployments\nkubectl get nodes\nkubectl get services\nkubectl get services -l label-name\nkubectl proxy\nkubectl run node-name --image=link-to-image.com --port=8080\nkubectl describe\nkubectl logs\nkubectl exec \nkubectl port-forward \u003cservice-name\u003e \u003clocal-port\u003e \u003cpod-port\u003e\nkubectl create -f ./secret.yaml\nkubectl delete secret name-of-secret\nkubectl config use-context name-of-cluster\nkubectl config get-contexts\n\nkubectl describe node the-name-of-the-node\n```\n\n\n## Maven\n\n```\nmvn --version\nmvn validate\nmvn compile\nmvn test\nmvn package\nmvn integration-test\nmvn verify\nmvn install\nmvn install -P \u003cbuild-profile\u003e\nmvn deploy\nmvn clean\nmvn site\n```\n\n\n## npm\n\n```\nnpm version\nnpm install\nnpm update\n```\n\n\n## sbt\n\n```\nsbt clean\nsbt compile\nsbt run 9060\nsbt test\nsbt testOnly com.google.package.x.*\nsbt reload\nsbt update\n```\n\n\n## brew\n\n```\n/usr/local/Cellar/cassandra (Location Cassandra is installed using Brew)\n```\n\n\n## ...\n\n```\n...\n```\n\n### Make script executable\n```\nchmod +x script.sh\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmuttalipkucuk%2Fcommands","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmuttalipkucuk%2Fcommands","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmuttalipkucuk%2Fcommands/lists"}