{"id":28717453,"url":"https://github.com/pyastrolab/basic-git-guide","last_synced_at":"2026-04-30T06:34:57.224Z","repository":{"id":298953450,"uuid":"1001657390","full_name":"pyastrolab/basic-git-guide","owner":"pyastrolab","description":"A Short Guide to Understand the Working of Git and Github.","archived":false,"fork":false,"pushed_at":"2025-06-13T19:45:28.000Z","size":905,"stargazers_count":0,"open_issues_count":0,"forks_count":1,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-06-13T20:22:04.280Z","etag":null,"topics":["git","github","guide"],"latest_commit_sha":null,"homepage":"https://basic-git-guide.vercel.app","language":"HTML","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/pyastrolab.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,"zenodo":null}},"created_at":"2025-06-13T19:07:01.000Z","updated_at":"2025-06-13T19:45:31.000Z","dependencies_parsed_at":"2025-06-13T20:32:54.874Z","dependency_job_id":null,"html_url":"https://github.com/pyastrolab/basic-git-guide","commit_stats":null,"previous_names":["pyastrolab/basic-git-guide"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/pyastrolab/basic-git-guide","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pyastrolab%2Fbasic-git-guide","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pyastrolab%2Fbasic-git-guide/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pyastrolab%2Fbasic-git-guide/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pyastrolab%2Fbasic-git-guide/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/pyastrolab","download_url":"https://codeload.github.com/pyastrolab/basic-git-guide/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pyastrolab%2Fbasic-git-guide/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":259919292,"owners_count":22932066,"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","github","guide"],"created_at":"2025-06-15T04:00:37.999Z","updated_at":"2026-04-30T06:34:52.193Z","avatar_url":"https://github.com/pyastrolab.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"\n\n## 🧰 Basic Git Guide\n\nThis guide covers the essential Git commands to get started with this repository.\nRefer: https://basic-git-guide.vercel.app and [git_cheat_sheet.pdf](https://github.com/pyastrolab/basic-git-guide/git_cheat_sheet.pdf)\n\n### 📦 Clone the Repository\n\n```bash\ngit clone https://github.com/your-username/your-repo-name.git\ncd your-repo-name\n```\n\n---\n\n### 🔧 Set Up Git (if you haven't already)\n\n```bash\ngit config --global user.name \"Your Name\"\ngit config --global user.email \"you@example.com\"\n```\n\n---\n\n### 🌿 Create a New Branch\n\n```bash\ngit checkout -b your-feature-branch\n```\n\n\u003e Use a descriptive name like `fix/readme-typo` or `feature/user-login`.\n\n---\n\n### 📝 Make Changes and Commit\n\n```bash\ngit add .\ngit commit -m \"Your meaningful commit message\"\n```\n\n---\n\n### 🔄 Pull Latest Changes\n\nMake sure your branch is up to date before pushing:\n\n```bash\ngit pull origin main  # or 'master' if your repo uses that\n```\n\n---\n\n### 🚀 Push Your Changes\n\n```bash\ngit push origin your-feature-branch\n```\n\n---\n\n### 📥 Create a Pull Request\n\n1. Go to the GitHub repository in your browser.\n2. Click **\"Compare \u0026 pull request\"**.\n3. Add a title and description for your PR.\n4. Submit the pull request.\n\n---\n\n### 🧹 Optional: Delete Branch After Merge\n\n```bash\ngit branch -d your-feature-branch        # delete local\ngit push origin --delete your-feature-branch  # delete remote\n```\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpyastrolab%2Fbasic-git-guide","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpyastrolab%2Fbasic-git-guide","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpyastrolab%2Fbasic-git-guide/lists"}