{"id":18593553,"url":"https://github.com/atiq-cs/easygit-cs","last_synced_at":"2026-04-27T20:31:17.172Z","repository":{"id":89133937,"uuid":"422323547","full_name":"atiq-cs/EasyGit-CS","owner":"atiq-cs","description":"Easy Git: a Git Utility; let's make version control easier; this is the C# version, to be deprecated in favor of Kotlin.","archived":false,"fork":false,"pushed_at":"2025-04-02T01:58:03.000Z","size":128,"stargazers_count":0,"open_issues_count":2,"forks_count":0,"subscribers_count":1,"default_branch":"dev","last_synced_at":"2025-04-02T02:39:10.810Z","etag":null,"topics":["git","libgit2sharp","version-control"],"latest_commit_sha":null,"homepage":"","language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/atiq-cs.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":"2021-10-28T19:01:27.000Z","updated_at":"2025-04-02T01:58:06.000Z","dependencies_parsed_at":"2024-11-07T01:12:51.497Z","dependency_job_id":"0608a870-d757-487f-9486-f8b2f635335f","html_url":"https://github.com/atiq-cs/EasyGit-CS","commit_stats":null,"previous_names":["atiq-cs/easygit-cs"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/atiq-cs%2FEasyGit-CS","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/atiq-cs%2FEasyGit-CS/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/atiq-cs%2FEasyGit-CS/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/atiq-cs%2FEasyGit-CS/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/atiq-cs","download_url":"https://codeload.github.com/atiq-cs/EasyGit-CS/tar.gz/refs/heads/dev","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":254513245,"owners_count":22083534,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["git","libgit2sharp","version-control"],"created_at":"2024-11-07T01:12:52.602Z","updated_at":"2026-04-27T20:31:17.146Z","avatar_url":"https://github.com/atiq-cs.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"## Git Utility\nGit Utility to handle multiple git accounts.\nA utility to automate some of the commonly used Git Actions.\n\nFor example, to push changes to a git repository, this is a common sequence of commands,\n\n    git add --update\n    git commit --file commit_log.txt\n    git push origin BRANCH_NAME\n\nThis utility does all of that when we run,\n\n    GitUtility push mod\n\nThe tool requires an initial json config file to start with. The path of config file is:\n`%LOCALAPPDATA%\\GitUtilConfig.json`\n\nExample json config,\n\n    {\n        \"github.com/USER_NAME_1\": {\n            \"GithubToken\": \"ghp_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\",\n            \"FullName\": \"First Last\",\n            \"Email\": \"user@github.com\",\n            \"CommitLogFilePath\": \"D:\\\\code\\\\commit_log_user1.txt\",\n            \"IsDefault\": \"True\"\n        },\n        \"bitbucket.com/USER_NAME_2\": {\n            \"Password\": \"YOUR_PASS_2\",\n            \"Dirs\": [\n                \"D:\\\\Code\\\\OtherOrg\\\\BIApp\"\n            ],\n            \"FullName\": \"First Last\",\n            \"Email\": \"user2@bitbucket.com\",\n            \"CommitLogFilePath\": \"D:\\\\code\\\\commit_log_user2.txt\"\n        }\n        \"localhost/USER_NAME_3\": {\n            \"Password\": \"YOUR_PASS_3\",\n            \"Dirs\": [\n                \"D:\\\\Code\\\\LocalProjects\\\\BIApp\"\n            ],\n            \"FullName\": \"First Last\",\n            \"Email\": \"user3@corp.com\",\n            \"CommitLogFilePath\": \"D:\\\\code\\\\commit_log_use3.txt\"\n        }\n    }\n\n\n**CLA Examples**  \n*CLA Design follows POSIX style arguments.*\n\nCommands,\n\n    GitUtility info\n    GitUtility push mod\n    GitUtility pull\n    GitUtility push mod --amend\n\nAbove commands assume we are inside the git repo directory.\n\nTo run while being outside of the repo dir, we have,\n\n    GitUtility --repo-path D:\\CoolApp info\n\nOr, to specify an input json config file path,\n\n    GitUtility --config-file-path D:\\Workspace\\Config.json info\n\nIf it's not provided, default path is: `$Env:LOCALAPPDATA\\GitUtilConfig.json`.\n\n`push mod` only pushes modified files.\n\n**Info / Status related arguments**\n\nShow basic information about the repository,\n\n    GitUtility --repo-path D:\\CoolApp info\n\nShow modified files that will be added to next `push mod` command,\n\n    GitUtility --repo-path D:\\CoolApp stat\n\nPlease visit the design wiki for command line arguments (in reference section) to know more about the\narguments.\n\nTo add a single file to commit and to push it to remote,\n\n    GitUtility push single relative_file_path\n\n*Argument `push single` also supports `--amend` to overwrite the previous commit.*\n\nTo add all files and to push,\n\n    GitUtility push all\n\n\n`push all` supports `--amend` which allows modifying/ammending the last commit and pushing to remote.\n\n**Remote URL examples**\nSet remote origin,\n\n    GitUtility set-url https://github.com/repo/project.git\n\nSet remote upstream (useful when you are only pulling changes from an upstream source, but pushing to your own repository),\n\n    GitUtility set-url https://github.com/repo/project.git --upstream\n\n#### Pull Examples\nPull from remote upstream (set upstream before running this using example in previous section),\n\n    GitUtility pull --upstream\n\nTo pull from origin,\n\n    GitUtility pull\n\nFor help on CLA try,\n\n    GitUtility help\n\n\n### References\n- CLA Design [wiki](https://github.com/atiq-cs/GitUtil/wiki/Command-Line-Arguments-Design)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fatiq-cs%2Feasygit-cs","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fatiq-cs%2Feasygit-cs","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fatiq-cs%2Feasygit-cs/lists"}