CSharp-Tutor
No description available.
File Explorer
- bug_report.md
- feature_request.md
- ci.yml
- pull_request_template.md
- openai.yaml
- SKILL.md
- openai.yaml
- SKILL.md
- openai.yaml
- SKILL.md
- openai.yaml
- SKILL.md
- openai.yaml
- SKILL.md
- openai.yaml
- SKILL.md
- openai.yaml
- SKILL.md
- openai.yaml
- SKILL.md
- openai.yaml
- SKILL.md
- openai.yaml
- SKILL.md
- openai.yaml
- SKILL.md
- openai.yaml
- SKILL.md
- openai.yaml
- SKILL.md
- openai.yaml
- SKILL.md
- openai.yaml
- SKILL.md
- openai.yaml
- SKILL.md
- openai.yaml
- SKILL.md
- openai.yaml
- SKILL.md
- openai.yaml
- SKILL.md
- openai.yaml
- SKILL.md
- openai.yaml
- SKILL.md
- openai.yaml
- SKILL.md
- openai.yaml
- SKILL.md
- openai.yaml
- SKILL.md
- openai.yaml
- SKILL.md
- openai.yaml
- SKILL.md
- openai.yaml
- SKILL.md
- openai.yaml
- SKILL.md
- openai.yaml
- SKILL.md
- openai.yaml
- SKILL.md
- openai.yaml
- SKILL.md
- openai.yaml
- SKILL.md
- openai.yaml
- SKILL.md
- openai.yaml
- SKILL.md
- openai.yaml
- SKILL.md
- openai.yaml
- SKILL.md
- openai.yaml
- SKILL.md
- openai.yaml
- SKILL.md
- openai.yaml
- SKILL.md
- openai.yaml
- SKILL.md
- openai.yaml
- SKILL.md
- openai.yaml
- SKILL.md
- openai.yaml
- SKILL.md
- openai.yaml
- analyzer-tooling-guidance.md
- analyzers-guidance.md
- answer-quality-rules.md
- aot-guidance.md
- api-design-guidance.md
- architecture-guidance.md
- ask-before-assuming.md
- aspnet-guidance.md
- async-guidance.md
- blazor-guidance.md
- build-guidance.md
- cheatsheet-guidance.md
- code-smell-to-refactor.md
- collections-guidance.md
- command-index.md
- common-csharp-pitfalls.md
- compiler-error-library.md
- concurrency-guidance.md
- containers-guidance.md
- cross-skill-composition.md
- debug-lab-guidance.md
- design-patterns-guidance.md
- di-guidance.md
- docs-grounding.md
- dollar-command-recipes.md
- efcore-guidance.md
- errors-guidance.md
- example-prompts-and-responses.md
- example-quality-rules.md
- exercise-guidance.md
- forward-tests.md
- framework-guidance.md
- generics-guidance.md
- grpc-guidance.md
- interview-guidance.md
- json-guidance.md
- learner-levels.md
- learning-profile.md
- linq-guidance.md
- logging-guidance.md
- maui-guidance.md
- migration-guidance.md
- mini-projects.md
- modern-dotnet-patterns.md
- modernization-map.md
- nuget-guidance.md
- nullability-guidance.md
- official-docs-map.md
- official-sources.md
- oop-guidance.md
- performance-review-map.md
- project-inspection.md
- qol-command-ux.md
- quickfix-guidance.md
- regex-guidance.md
- response-templates.md
- review-checklist.md
- review-output-contracts.md
- review-profiles.md
- security-review-map.md
- self-check-rubric.md
- self-update-guidance.md
- signalr-guidance.md
- skill-router.md
- skill-routing.md
- source-citation-rules.md
- sourcegen-guidance.md
- style-guidance.md
- testing-guidance.md
- tooling-and-analyzers.md
- verification-checklist.md
- versioning-guidance.md
- inspect_csharp_project.py
- SKILL.md
- openai.yaml
- SKILL.md
- generate-skills-catalog.ps1
- get-maintenance-dashboard.ps1
- install-csharp-tutor.ps1
- install-latest.ps1
- install-latest.sh
- release.ps1
- restore-backup.ps1
- test-csharp-tutor.ps1
- test-output-quality.ps1
- golden-qa.json
- README.md
- .gitignore
- CHANGELOG.md
- CONTRIBUTING.md
- csharp-tutor-manifest.json
- EXAMPLE-PROMPTS.md
- INSTALL-TROUBLESHOOTING.md
- KNOWN-LIMITATIONS.md
- LICENSE
- QUALITY-RUBRIC.md
- README.md
- RELEASE.md
- SKILLS.md
- TOPICS.md
- VERSION
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
git push
View Details ▼
git push
Push commits to a remote repository.
git push
Send local changes in the current branch to its default remote counterpart:
git push {{remote_name}} {{local_branch}}
Send changes from a specific local branch to its remote counterpart:
git push {{[-u|--set-upstream]}} {{remote_name}} {{local_branch}}
Send changes from a specific local branch to its remote counterpart, and set the remote one as the default push/pull target of the local one:
git tag
View Details ▼
git tag
Create, list, delete, or verify tags.
A tag is a static reference to a commit.
git tag
List all tags:
git tag {{tag_name}}
Create a tag with the given name pointing to the current commit:
git tag {{tag_name}} {{commit}}
Create a tag with the given name pointing to a given commit:
python
View Details ▼
python
Python language interpreter.
python
Start a REPL (interactive shell):
python {{path/to/file.py}}
Execute a specific Python file:
python -i {{path/to/file.py}}
Execute a specific Python file and start a REPL:
