{"id":18711505,"url":"https://github.com/descriptions-of-it-technologies/git","last_synced_at":"2026-04-15T07:33:37.803Z","repository":{"id":113845076,"uuid":"246628745","full_name":"descriptions-of-it-technologies/git","owner":"descriptions-of-it-technologies","description":null,"archived":false,"fork":false,"pushed_at":"2021-11-01T15:31:40.000Z","size":99,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-10-28T23:37:31.027Z","etag":null,"topics":["git","git-commands"],"latest_commit_sha":null,"homepage":null,"language":"Shell","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/descriptions-of-it-technologies.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":"2020-03-11T16:52:57.000Z","updated_at":"2021-11-01T15:31:43.000Z","dependencies_parsed_at":"2023-07-07T06:31:51.464Z","dependency_job_id":null,"html_url":"https://github.com/descriptions-of-it-technologies/git","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/descriptions-of-it-technologies/git","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/descriptions-of-it-technologies%2Fgit","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/descriptions-of-it-technologies%2Fgit/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/descriptions-of-it-technologies%2Fgit/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/descriptions-of-it-technologies%2Fgit/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/descriptions-of-it-technologies","download_url":"https://codeload.github.com/descriptions-of-it-technologies/git/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/descriptions-of-it-technologies%2Fgit/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31831842,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-15T07:17:56.427Z","status":"ssl_error","status_checked_at":"2026-04-15T07:17:30.007Z","response_time":63,"last_error":"SSL_read: 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":["git","git-commands"],"created_at":"2024-11-07T12:39:19.647Z","updated_at":"2026-04-15T07:33:37.781Z","avatar_url":"https://github.com/descriptions-of-it-technologies.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Git.\n\n\n\n\n\n## Contents at a Glance.\n* [About.](#about)\n* [Documentation.](#documentation)\n* [Git Commands.](git-commands.md)\n* [The .gitignore File.](#the-gitignore-file)\n* [Platforms.](#platforms)\n* [Graphical User Interfaces Clients (GUI).](#graphical-user-interfaces-clients-gui)\n* [Articles.](#articles)\n* [Merge Conflict.](#merge-conflict)\n* [Help.](#help)\n\n\n\n\n\n## About.\n\n\n\n\n\n## Documentation.\n\n\n\n\n\n\n## The .gitignore File.\n\n* You can list files/directories that you want to explicitely exclude from Git in a `.gitignore` file. This file should \n  be placed at the root of your repository.\n\n* [GitHub .gitignore Docs.](https://github.com/github/gitignore)\n\n\n\n\n\n## Platforms.\n\nThe following platforms can be used to host your Git repositories.\n\n| NAME                               | PRICE |\n| ---------------------------------- | ----- |\n| [Github](https://github.com)       | Free  |\n| [Gitlab](https://gitlab.com)       | Free  |\n| [Bitbucket](https://bitbucket.org) | Free  |\n\n\n\n\n\n### Graphical User Interfaces Clients (GUI).\n\nIs the command-line not for you? Try one of the following GUIs.\n\n| NAME                                         | OS                | PRICE           |\n| -------------------------------------------- | ----------------- | --------------- |\n| [Github](https://desktop.github.com)         | Mac and Windows   | Free            |\n| [Source Tree](https://www.sourcetreeapp.com) | Mac and Windows   | Free            |\n| [Tower](https://www.git-tower.com)           | MacOS and Windows | 59 USD per year |\n\n\n\n\n\n## Articles.\n* [Learn Git concepts, not commands](https://dev.to/unseenwizzard/learn-git-concepts-not-commands-4gjc)\n* [Syncing a Fork](https://help.github.com/en/github/collaborating-with-issues-and-pull-requests/syncing-a-fork)\n* [Flight rules for Git](https://github.com/k88hudson/git-flight-rules) - What to do when things go wrong...\n* [Git Flow](https://guides.github.com/introduction/flow/)\n\n\n\n\n\n## Merge Conflict.\nWhat is Merge Conflict?\n* A merge conflict is a event that take place when Git is unable to resolve differences in code between the two commits automatically.\n* Git can automatically merge the changes only if the commits are not different lines or branches.\n\nType of Merge Conflict. There are two points when a merge can enter a conflict state.\n* Starting the merge process:\n  * If there are changes in the working directory of the stage area of the current project, merge will fail to start. \n  * In this case conflict happen due to pending changes which needs to be stabilized using different git commands.\n* During the merge process:\n  * The failure during the merge process indicate that there is a conflict between the local branch and the branch being merged.\n  * In this case git resolves as much as possible but there are things that have to be resolved manually in the conflict file.\n\n\n\n\n\n## Help.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdescriptions-of-it-technologies%2Fgit","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdescriptions-of-it-technologies%2Fgit","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdescriptions-of-it-technologies%2Fgit/lists"}