diff --git a/.bash_main b/.bash_main index 8b13789..aaabb97 100644 --- a/.bash_main +++ b/.bash_main @@ -1 +1,29 @@ +docker build --build-arg CONFIGCAT_AUTH_KEY=yourkeyhere --build-arg JOB_ID=1234 -t myreactapp . +docker run -p 3000:3000 -e JOB_ID=1234 myreactapp +redis-server +uvicorn enclov_ai_backend:app --reload +celery -A enclov_ai_backend.celery_app worker --loglevel=info +pip install fastapi uvicorn celery redis pydantic mlflow optuna shap +pip install -r requirements.txt +base64 -w 0 kubeconfig.yaml +docker run --net=host -it -e NGROK_AUTHTOKEN=2y96VwzmhS1YV6vgll2Ua411oGc_755Qcpps22pznftiuGZWr ngrok/ngrok:latest http --url=above-feasible-lobster.ngrok-free.app 80 +docker run --net=host -it -e NGROK_AUTHTOKEN=2y96VwzmhS1YV6vgll2Ua411oGc_755Qcpps22pznftiuGZWr ngrok/ngrok:latest http 80 +docker pull ngrok/ngrok +ngrok config add-authtoken 2y96VwzmhS1YV6vgll2Ua411oGc_755Qcpps22pznftiuGZWr +npm install -r requirements.txt +cd enclov-AI +mkdir frontend +cd frontend +npx create-next-app@latest . +cat << 'EOF' | git apply +diff --git a/.github/workflows/gen-man.yml b/.github/workflows/gen-man.yml +--- a/.github/workflows/gen-man.yml ++++ b/.github/workflows/gen-man.yml +@@ -2,2 +2,5 @@ + ++permissions: ++ contents: read ++ + on: +EOF diff --git a/circleci/config.yml b/.circleci/config.yml similarity index 75% rename from circleci/config.yml rename to .circleci/config.yml index e8f9dff..09e4418 100644 --- a/circleci/config.yml +++ b/.circleci/config.yml @@ -15,16 +15,16 @@ jobs: - run: name: Install dependencies - command: pip install -r app/requirements.txt + command: pip install -r requirements.txt - docker/build: - image: your-dockerhub-user/enclov-ai + image: web4application.github.io/enclov-AI tag: latest path: . extra_build_args: --compress - docker/push: - image: your-dockerhub-user/enclov-ai + image: web4application.github.io/enclov-AI tag: latest workflows: diff --git a/.dockerignore b/.dockerignore index fb14bc1..c46a422 100644 --- a/.dockerignore +++ b/.dockerignore @@ -1,11 +1,22 @@ -__pycache__ +# Python cache files +__pycache__/ *.pyc *.pyo *.pyd + +# Virtual environments env/ venv/ + +# Git files (don’t send your git repo to Docker build context) .git .gitignore + +# Dockerfile itself (optional, but usually you want to exclude it from context) Dockerfile + +# Markdown docs (usually not needed inside container) *.md + +# Test folders/files (not needed in production image) tests/ diff --git a/.env b/.env new file mode 100644 index 0000000..2eb2649 --- /dev/null +++ b/.env @@ -0,0 +1,11 @@ +GITHUB_WEBHOOK_SECRET=84298ed9f2470f159b48e36e76eb90eeac061941 +GITHUB_APP_ID=1325944 +GITHUB_PRIVATE_KEY_PATH=./keys/private-key.pem +google_API_KEY=AIzaSyAvrxOyAVzPVcnzxuD0mjKVDyS2bNWfC10 +export_GOOGLE_API_KEY=AlzaSyCHjfdo3w160Dd5yTVJD409pWmigOJEg +GITHUB_REPOSITORY=web4application/enclove-ai +PR_NUMBER=123 +export_GEMINI_API_KEY= +OPENAI_Api_KEY=gG1uZhj50x1lYFKrrB5kT3BlbkFJXP3R63ExWT9lkcHI0pRq +export GITHUB_TOKEN=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 +GITHUB_TOKEN=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 diff --git a/.env.local b/.env.local deleted file mode 100644 index 91831a5..0000000 --- a/.env.local +++ /dev/null @@ -1,9 +0,0 @@ -OPENAI_API_KEY=AIzaSyAvrxOyAVzPVcnzxuD0mjKVDyS2bNWfC10 -GOOGLE_API_KEY=AlzaSyCHjfdo3w160Dd5yTVJD409pWmigOJEg -GITHUB_TOKEN=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 -GITHUB_REPOSITORY=web4application/enclove-ai -PR_NUMBER=123 -GITHUB_TOKEN=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 -GITHUB_TOKEN=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 -export_GEMINI_API_KEY= -Enclove_key=SHA256:azbCLWXHqrgAouTNtisS8C0xUYD3VnH+QsxmHc2sMas= diff --git a/.github/workflows/Deploy.yaml b/.github/workflows/Deploy.yaml deleted file mode 100644 index b9e862f..0000000 --- a/.github/workflows/Deploy.yaml +++ /dev/null @@ -1,40 +0,0 @@ -name: Deploy enclov-AI to Kubernetes - -on: - push: - branches: [main] - -permissions: - contents: read - -jobs: - build_and_deploy: - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v3 - - - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v2 - - - name: Log in to Docker Hub - uses: docker/login-action@v2 - with: - username: ${{ secrets.DOCKER_USERNAME }} - password: ${{ secrets.DOCKER_PASSWORD }} - - - name: Build and push Docker image - uses: docker/build-push-action@v4 - with: - push: true - tags: your-dockerhub-username/enclov-ai:latest - - - name: Set up kubectl - uses: azure/setup-kubectl@v3 - with: - version: 'latest' - - - name: Deploy to Kubernetes - run: kubectl apply -f k8s/ - env: - KUBECONFIG: ${{ secrets.KUBECONFIG }} diff --git a/.github/workflows/ai_pr_review.yml b/.github/workflows/ai-code-review.yml similarity index 66% rename from .github/workflows/ai_pr_review.yml rename to .github/workflows/ai-code-review.yml index 002235f..c30dbf6 100644 --- a/.github/workflows/ai_pr_review.yml +++ b/.github/workflows/ai-code-review.yml @@ -7,10 +7,13 @@ on: jobs: ai_review: runs-on: ubuntu-latest + steps: - - uses: actions/checkout@v3 - - name: AI Code Reviewer - uses: web4application/ai-code-reviewer@main + - name: Checkout code + uses: actions/checkout@v3 + + - name: Run AI Code Reviewer + uses: ./ai-code-reviewer with: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }} diff --git a/.github/workflows/docker-image.yml b/.github/workflows/docker-image.yml new file mode 100644 index 0000000..3f53646 --- /dev/null +++ b/.github/workflows/docker-image.yml @@ -0,0 +1,18 @@ +name: Docker Image CI + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + +jobs: + + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + - name: Build the Docker image + run: docker build . --file Dockerfile --tag my-image-name:$(date +%s) diff --git a/.github/workflows/hugo.yml b/.github/workflows/hugo.yml deleted file mode 100644 index a8cf471..0000000 --- a/.github/workflows/hugo.yml +++ /dev/null @@ -1,74 +0,0 @@ -# Sample workflow for building and deploying a Hugo site to GitHub Pages -name: Deploy Hugo site to Pages - -on: - # Runs on pushes targeting the default branch - push: - branches: ["main"] - - # Allows you to run this workflow manually from the Actions tab - workflow_dispatch: - -# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages -permissions: - contents: read - pages: write - id-token: write - -# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued. -# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete. -concurrency: - group: "pages" - cancel-in-progress: false - -# Default to bash -defaults: - run: - shell: bash - -jobs: - # Build job - build: - runs-on: ubuntu-latest - env: - HUGO_VERSION: 0.128.0 - steps: - - name: Install Hugo CLI - run: | - wget -O ${{ runner.temp }}/hugo.deb https://github.com/gohugoio/hugo/releases/download/v${HUGO_VERSION}/hugo_extended_${HUGO_VERSION}_linux-amd64.deb \ - && sudo dpkg -i ${{ runner.temp }}/hugo.deb - - name: Install Dart Sass - run: sudo snap install dart-sass - - name: Checkout - uses: actions/checkout@v4 - with: - submodules: recursive - - name: Setup Pages - id: pages - uses: actions/configure-pages@v5 - - name: Install Node.js dependencies - run: "[[ -f package-lock.json || -f npm-shrinkwrap.json ]] && npm ci || true" - - name: Build with Hugo - env: - HUGO_CACHEDIR: ${{ runner.temp }}/hugo_cache - HUGO_ENVIRONMENT: production - run: | - hugo \ - --minify \ - --baseURL "${{ steps.pages.outputs.base_url }}/" - - name: Upload artifact - uses: actions/upload-pages-artifact@v3 - with: - path: ./public - - # Deployment job - deploy: - environment: - name: github-pages - url: ${{ steps.deployment.outputs.page_url }} - runs-on: ubuntu-latest - needs: build - steps: - - name: Deploy to GitHub Pages - id: deployment - uses: actions/deploy-pages@v4 diff --git a/.github/workflows/jekyll-docker.yml b/.github/workflows/jekyll-docker.yml new file mode 100644 index 0000000..3d0eedb --- /dev/null +++ b/.github/workflows/jekyll-docker.yml @@ -0,0 +1,20 @@ +name: Jekyll site CI + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + - name: Build the site in the jekyll/builder container + run: | + docker run \ + -v ${{ github.workspace }}:/srv/jekyll -v ${{ github.workspace }}/_site:/srv/jekyll/_site \ + jekyll/builder:latest /bin/bash -c "chmod -R 777 /srv/jekyll && jekyll build --future" diff --git a/.github/workflows/jekyll-gh-pages.yml b/.github/workflows/jekyll-gh-pages.yml deleted file mode 100644 index e31d81c..0000000 --- a/.github/workflows/jekyll-gh-pages.yml +++ /dev/null @@ -1,51 +0,0 @@ -# Sample workflow for building and deploying a Jekyll site to GitHub Pages -name: Deploy Jekyll with GitHub Pages dependencies preinstalled - -on: - # Runs on pushes targeting the default branch - push: - branches: ["main"] - - # Allows you to run this workflow manually from the Actions tab - workflow_dispatch: - -# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages -permissions: - contents: read - pages: write - id-token: write - -# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued. -# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete. -concurrency: - group: "pages" - cancel-in-progress: false - -jobs: - # Build job - build: - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v4 - - name: Setup Pages - uses: actions/configure-pages@v5 - - name: Build with Jekyll - uses: actions/jekyll-build-pages@v1 - with: - source: ./ - destination: ./_site - - name: Upload artifact - uses: actions/upload-pages-artifact@v3 - - # Deployment job - deploy: - environment: - name: github-pages - url: ${{ steps.deployment.outputs.page_url }} - runs-on: ubuntu-latest - needs: build - steps: - - name: Deploy to GitHub Pages - id: deployment - uses: actions/deploy-pages@v4 diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..9dfa0ed --- /dev/null +++ b/.gitignore @@ -0,0 +1,50 @@ +# Python +__pycache__/ +*.py[cod] +*.pyo +*.pyd +env/ +venv/ +ENV/ +.env +*.env + +# Node.js +node_modules/ +build/ +dist/ +npm-debug.log* +yarn-debug.log* +yarn-error.log* + +# Docker +*.log +docker-compose.override.yml +.env + +# VSCode +.vscode/ + +# MacOS +.DS_Store + +# Editors and IDEs +*.swp +*.swo +*.idea/ +*.iml + +# Logs +*.log + +# Coverage reports +htmlcov/ +.coverage +.coverage.* + +# pytest cache +.cache/ +.pytest_cache/ + +# mypy +.mypy_cache/ diff --git a/Bash.sh b/Bash.sh deleted file mode 100644 index 5aadeb1..0000000 --- a/Bash.sh +++ /dev/null @@ -1,8 +0,0 @@ -docker build --build-arg CONFIGCAT_AUTH_KEY=yourkeyhere --build-arg JOB_ID=1234 -t myreactapp . -docker run -p 3000:3000 -e JOB_ID=1234 myreactapp -redis-server -uvicorn enclov_ai_backend:app --reload -celery -A enclov_ai_backend.celery_app worker --loglevel=info -pip install fastapi uvicorn celery redis pydantic mlflow optuna shap -pip install -r requirements.txt - diff --git a/Docker-compose.yml b/Docker-compose.yml index 9880f58..80b9df7 100644 --- a/Docker-compose.yml +++ b/Docker-compose.yml @@ -1,36 +1,22 @@ -version: '3.8' - +version: "3.9" services: backend: - build: ./backend - container_name: enclov_backend - env_file: .env - command: uvicorn app.main:app --host 0.0.0.0 --port 8000 + build: . + ports: + - "8000:8000" volumes: - - ./backend:/code - depends_on: - - redis - - celery: - build: ./backend - container_name: enclov_celery - command: celery -A app.celery_worker worker --loglevel=info - env_file: .env - depends_on: - - redis + - .:/app + environment: + - MODEL_PROVIDER=openai + - OPENAI_API_KEY=${Sk-gG1uZhj50x1lYFKrrB5kT3BlbkFJXP3R63ExWT9lkcHI0pRq +} - redis: - image: redis:alpine - container_name: enclov_redis - - nginx: - image: nginx:stable - container_name: enclov_nginx - volumes: - - ./nginx/nginx.conf:/etc/nginx/nginx.conf - - /etc/letsencrypt:/etc/letsencrypt + frontend: + build: + context: ./frontend ports: - - "80:80" - - "443:443" - depends_on: - - backend + - "5173:5173" + command: ["npm", "run", "dev"] + volumes: + - ./frontend:/app + working_dir: /app diff --git a/Dockerfile b/Dockerfile index 16e6c88..4cd0a39 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,52 +1,65 @@ -# --- Stage 1: Build React frontend --- -FROM node:18-alpine AS frontend-builder - -WORKDIR /app - -COPY frontend/package*.json ./ -RUN npm install - -COPY frontend/ ./ -ARG REACT_APP_CONFIGCAT_ENV -ENV REACT_APP_CONFIGCAT_ENV=$REACT_APP_CONFIGCAT_ENV - -RUN npm run build - -# --- Stage 2: Build backend (FastAPI with Uvicorn) --- -FROM python:3.11-slim AS backend-builder - +# Use Ubuntu base +FROM ubuntu:22.04 + +# Set non-interactive mode for apt +ENV DEBIAN_FRONTEND=noninteractive + +# Install build tools, Python, Ruby +RUN apt-get update && apt-get install -y \ + python3 python3-pip \ + ruby-full \ + build-essential \ + g++ \ + git \ + curl \ + && rm -rf /var/lib/apt/lists/* + +# Install Ruby bundler +RUN gem install bundler + +# Create working dir WORKDIR /app -# Install backend dependencies -COPY backend/requirements.txt . -RUN pip install --no-cache-dir -r requirements.txt +# Copy files +COPY . . -COPY backend/ . +# Install Python deps +RUN pip3 install -r requirements.txt -# --- Stage 3: Final image, serve React with Nginx and run FastAPI --- -FROM nginx:stable-alpine +# Install Ruby deps (if Gemfile exists) +RUN bundle install || true -# Remove default nginx static content -RUN rm -rf /usr/share/nginx/html/* +# Build C++ (optional) +RUN g++ -Wall -std=c++17 -o app main.cpp || true -# Copy built React files from frontend-builder -COPY --from=frontend-builder /app/build /usr/share/nginx/html +# Entry point prints help +CMD ["make", "help"] -# Copy backend files and virtualenv -COPY --from=backend-builder /app /app +# Base Python stage +FROM python:3.11-slim as python-build +WORKDIR /app/python +COPY python/requirements.txt . +RUN pip install -r requirements.txt +COPY python/ . -# Copy nginx config to serve React SPA (support client-side routing) -COPY nginx.conf /etc/nginx/conf.d/default.conf +# Base C++ stage +FROM gcc:12 as cpp-build +WORKDIR /app/cpp +COPY cpp/ . +RUN make -# Install python & dependencies for backend (slim + uvicorn) -RUN apk add --no-cache python3 py3-pip -RUN pip3 install --no-cache-dir fastapi uvicorn +# Base Ruby stage +FROM ruby:3.2 as ruby-build +WORKDIR /app/ruby +COPY ruby/ . +RUN bundle install -# Expose ports -EXPOSE 80 8000 +# Final image combining all +FROM debian:bookworm-slim +WORKDIR /app -# Run both Nginx and Uvicorn backend with a small script -COPY start.sh /start.sh -RUN chmod +x /start.sh +COPY --from=python-build /app/python /app/python +COPY --from=cpp-build /app/cpp/bin /app/cpp/bin +COPY --from=ruby-build /app/ruby /app/ruby -CMD ["/start.sh"] +CMD ["bash"] diff --git a/createEnclovAppWithLLM.py b/Docs/createEnclovAppWithLLM.py similarity index 100% rename from createEnclovAppWithLLM.py rename to Docs/createEnclovAppWithLLM.py diff --git a/enclov_ai_backend.py b/Docs/enclov_ai_backend.py similarity index 100% rename from enclov_ai_backend.py rename to Docs/enclov_ai_backend.py diff --git a/generate_docs.py b/Docs/generate_docs.py similarity index 100% rename from generate_docs.py rename to Docs/generate_docs.py diff --git a/repo_analyzer.py b/Docs/repo_analyzer.py similarity index 100% rename from repo_analyzer.py rename to Docs/repo_analyzer.py diff --git a/task_extractor.py b/Docs/task_extractor.py similarity index 100% rename from task_extractor.py rename to Docs/task_extractor.py diff --git a/Main/gh-repo-archive.1 b/Main/gh-repo-archive.1 deleted file mode 100644 index 849fc47..0000000 --- a/Main/gh-repo-archive.1 +++ /dev/null @@ -1,42 +0,0 @@ -.nh -.TH "GH-REPO-ARCHIVE" "1" "May 2025" "GitHub CLI 2.73.0" "GitHub CLI manual" - -.SH NAME -gh-repo-archive - Archive a repository - - -.SH SYNOPSIS -\fBgh repo archive [] [flags]\fR - - -.SH DESCRIPTION -Archive a GitHub repository. - -.PP -With no argument, archives the current repository. - - -.SH OPTIONS -.TP -\fB-y\fR, \fB--yes\fR -Skip the confirmation prompt - - -.SH EXIT CODES -0: Successful execution - -.PP -1: Error - -.PP -2: Command canceled - -.PP -4: Authentication required - -.PP -NOTE: Specific commands may have additional exit codes. Refer to the command's help for more information. - - -.SH SEE ALSO -\fBgh-repo(1)\fR diff --git a/Main/gh-repo-autolink-create.1 b/Main/gh-repo-autolink-create.1 deleted file mode 100644 index 51111a0..0000000 --- a/Main/gh-repo-autolink-create.1 +++ /dev/null @@ -1,82 +0,0 @@ -.nh -.TH "GH-REPO-AUTOLINK-CREATE" "1" "May 2025" "GitHub CLI 2.73.0" "GitHub CLI manual" - -.SH NAME -gh-repo-autolink-create - Create a new autolink reference - - -.SH SYNOPSIS -\fBgh repo autolink create [flags]\fR - - -.SH DESCRIPTION -Create a new autolink reference for a repository. - -.PP -The \fBkeyPrefix\fR argument specifies the prefix that will generate a link when it is appended by certain characters. - -.PP -The \fBurlTemplate\fR argument specifies the target URL that will be generated when the keyPrefix is found, which -must contain \fB\fR variable for the reference number. - -.PP -By default, autolinks are alphanumeric with \fB--numeric\fR flag used to create a numeric autolink. - -.PP -The \fB\fR variable behavior differs depending on whether the autolink is alphanumeric or numeric: -.IP \(bu 2 -alphanumeric: matches \fBA-Z\fR (case insensitive), \fB0-9\fR, and \fB-\fR -.IP \(bu 2 -numeric: matches \fB0-9\fR - -.PP -If the template contains multiple instances of \fB\fR, only the first will be replaced. - - -.SH OPTIONS -.TP -\fB-n\fR, \fB--numeric\fR -Mark autolink as numeric - - -.SH OPTIONS INHERITED FROM PARENT COMMANDS -.TP -\fB-R\fR, \fB--repo\fR \fB<[HOST/]OWNER/REPO>\fR -Select another repository using the [HOST/]OWNER/REPO format - - -.SH ALIASES -gh repo autolink new - - -.SH EXIT CODES -0: Successful execution - -.PP -1: Error - -.PP -2: Command canceled - -.PP -4: Authentication required - -.PP -NOTE: Specific commands may have additional exit codes. Refer to the command's help for more information. - - -.SH EXAMPLE -.EX -# Create an alphanumeric autolink to example.com for the key prefix "TICKET-". -# Generates https://example.com/TICKET?query=123abc from "TICKET-123abc". -$ gh repo autolink create TICKET- "https://example.com/TICKET?query=" - -# Create a numeric autolink to example.com for the key prefix "STORY-". -# Generates https://example.com/STORY?id=123 from "STORY-123". -$ gh repo autolink create STORY- "https://example.com/STORY?id=" --numeric - -.EE - - -.SH SEE ALSO -\fBgh-repo-autolink(1)\fR diff --git a/Main/gh-repo-autolink-delete.1 b/Main/gh-repo-autolink-delete.1 deleted file mode 100644 index f04fe25..0000000 --- a/Main/gh-repo-autolink-delete.1 +++ /dev/null @@ -1,45 +0,0 @@ -.nh -.TH "GH-REPO-AUTOLINK-DELETE" "1" "May 2025" "GitHub CLI 2.73.0" "GitHub CLI manual" - -.SH NAME -gh-repo-autolink-delete - Delete an autolink reference - - -.SH SYNOPSIS -\fBgh repo autolink delete [flags]\fR - - -.SH DESCRIPTION -Delete an autolink reference for a repository. - - -.SH OPTIONS -.TP -\fB--yes\fR -Confirm deletion without prompting - - -.SH OPTIONS INHERITED FROM PARENT COMMANDS -.TP -\fB-R\fR, \fB--repo\fR \fB<[HOST/]OWNER/REPO>\fR -Select another repository using the [HOST/]OWNER/REPO format - - -.SH EXIT CODES -0: Successful execution - -.PP -1: Error - -.PP -2: Command canceled - -.PP -4: Authentication required - -.PP -NOTE: Specific commands may have additional exit codes. Refer to the command's help for more information. - - -.SH SEE ALSO -\fBgh-repo-autolink(1)\fR diff --git a/Main/gh-repo-autolink-list.1 b/Main/gh-repo-autolink-list.1 deleted file mode 100644 index 691ca94..0000000 --- a/Main/gh-repo-autolink-list.1 +++ /dev/null @@ -1,68 +0,0 @@ -.nh -.TH "GH-REPO-AUTOLINK-LIST" "1" "May 2025" "GitHub CLI 2.73.0" "GitHub CLI manual" - -.SH NAME -gh-repo-autolink-list - List autolink references for a GitHub repository - - -.SH SYNOPSIS -\fBgh repo autolink list [flags]\fR - - -.SH DESCRIPTION -Gets all autolink references that are configured for a repository. - -.PP -Information about autolinks is only available to repository administrators. - - -.SH OPTIONS -.TP -\fB-q\fR, \fB--jq\fR \fB\fR -Filter JSON output using a jq expression - -.TP -\fB--json\fR \fB\fR -Output JSON with the specified fields - -.TP -\fB-t\fR, \fB--template\fR \fB\fR -Format JSON output using a Go template; see "gh help formatting" - -.TP -\fB-w\fR, \fB--web\fR -List autolink references in the web browser - - -.SH OPTIONS INHERITED FROM PARENT COMMANDS -.TP -\fB-R\fR, \fB--repo\fR \fB<[HOST/]OWNER/REPO>\fR -Select another repository using the [HOST/]OWNER/REPO format - - -.SH ALIASES -gh repo autolink ls - - -.SH JSON FIELDS -\fBid\fR, \fBisAlphanumeric\fR, \fBkeyPrefix\fR, \fBurlTemplate\fR - - -.SH EXIT CODES -0: Successful execution - -.PP -1: Error - -.PP -2: Command canceled - -.PP -4: Authentication required - -.PP -NOTE: Specific commands may have additional exit codes. Refer to the command's help for more information. - - -.SH SEE ALSO -\fBgh-repo-autolink(1)\fR diff --git a/Main/gh-repo-autolink-view.1 b/Main/gh-repo-autolink-view.1 deleted file mode 100644 index 4476dd7..0000000 --- a/Main/gh-repo-autolink-view.1 +++ /dev/null @@ -1,57 +0,0 @@ -.nh -.TH "GH-REPO-AUTOLINK-VIEW" "1" "May 2025" "GitHub CLI 2.73.0" "GitHub CLI manual" - -.SH NAME -gh-repo-autolink-view - View an autolink reference - - -.SH SYNOPSIS -\fBgh repo autolink view [flags]\fR - - -.SH DESCRIPTION -View an autolink reference for a repository. - - -.SH OPTIONS -.TP -\fB-q\fR, \fB--jq\fR \fB\fR -Filter JSON output using a jq expression - -.TP -\fB--json\fR \fB\fR -Output JSON with the specified fields - -.TP -\fB-t\fR, \fB--template\fR \fB\fR -Format JSON output using a Go template; see "gh help formatting" - - -.SH OPTIONS INHERITED FROM PARENT COMMANDS -.TP -\fB-R\fR, \fB--repo\fR \fB<[HOST/]OWNER/REPO>\fR -Select another repository using the [HOST/]OWNER/REPO format - - -.SH JSON FIELDS -\fBid\fR, \fBisAlphanumeric\fR, \fBkeyPrefix\fR, \fBurlTemplate\fR - - -.SH EXIT CODES -0: Successful execution - -.PP -1: Error - -.PP -2: Command canceled - -.PP -4: Authentication required - -.PP -NOTE: Specific commands may have additional exit codes. Refer to the command's help for more information. - - -.SH SEE ALSO -\fBgh-repo-autolink(1)\fR diff --git a/Main/gh-repo-autolink.1 b/Main/gh-repo-autolink.1 deleted file mode 100644 index 506e05d..0000000 --- a/Main/gh-repo-autolink.1 +++ /dev/null @@ -1,64 +0,0 @@ -.nh -.TH "GH-REPO-AUTOLINK" "1" "May 2025" "GitHub CLI 2.73.0" "GitHub CLI manual" - -.SH NAME -gh-repo-autolink - Manage autolink references - - -.SH SYNOPSIS -\fBgh repo autolink [flags]\fR - - -.SH DESCRIPTION -Autolinks link issues, pull requests, commit messages, and release descriptions to external third-party services. - -.PP -Autolinks require \fBadmin\fR role to view or manage. - -.PP -For more information, see -\[la]https://docs.github.com/en/repositories/managing\-your\-repositorys\-settings\-and\-features/managing\-repository\-settings/configuring\-autolinks\-to\-reference\-external\-resources\[ra] - - -.SH AVAILABLE COMMANDS -.TP -\fBgh-repo-autolink-create(1)\fR -Create a new autolink reference - -.TP -\fBgh-repo-autolink-delete(1)\fR -Delete an autolink reference - -.TP -\fBgh-repo-autolink-list(1)\fR -List autolink references for a GitHub repository - -.TP -\fBgh-repo-autolink-view(1)\fR -View an autolink reference - - -.SH OPTIONS -.TP -\fB-R\fR, \fB--repo\fR \fB<[HOST/]OWNER/REPO>\fR -Select another repository using the [HOST/]OWNER/REPO format - - -.SH EXIT CODES -0: Successful execution - -.PP -1: Error - -.PP -2: Command canceled - -.PP -4: Authentication required - -.PP -NOTE: Specific commands may have additional exit codes. Refer to the command's help for more information. - - -.SH SEE ALSO -\fBgh-repo(1)\fR diff --git a/Main/gh-repo-clone.1 b/Main/gh-repo-clone.1 deleted file mode 100644 index 94c2b9d..0000000 --- a/Main/gh-repo-clone.1 +++ /dev/null @@ -1,79 +0,0 @@ -.nh -.TH "GH-REPO-CLONE" "1" "May 2025" "GitHub CLI 2.73.0" "GitHub CLI manual" - -.SH NAME -gh-repo-clone - Clone a repository locally - - -.SH SYNOPSIS -\fBgh repo clone [] [-- ...]\fR - - -.SH DESCRIPTION -Clone a GitHub repository locally. Pass additional \fBgit clone\fR flags by listing -them after \fB--\fR\&. - -.PP -If the \fBOWNER/\fR portion of the \fBOWNER/REPO\fR repository argument is omitted, it -defaults to the name of the authenticating user. - -.PP -When a protocol scheme is not provided in the repository argument, the \fBgit_protocol\fR will be -chosen from your configuration, which can be checked via \fBgh config get git_protocol\fR\&. If the protocol -scheme is provided, the repository will be cloned using the specified protocol. - -.PP -If the repository is a fork, its parent repository will be added as an additional -git remote called \fBupstream\fR\&. The remote name can be configured using \fB--upstream-remote-name\fR\&. -The \fB--upstream-remote-name\fR option supports an \fB@owner\fR value which will name -the remote after the owner of the parent repository. - -.PP -If the repository is a fork, its parent repository will be set as the default remote repository. - - -.SH OPTIONS -.TP -\fB-u\fR, \fB--upstream-remote-name\fR \fB (default "upstream")\fR -Upstream remote name when cloning a fork - - -.SH EXIT CODES -0: Successful execution - -.PP -1: Error - -.PP -2: Command canceled - -.PP -4: Authentication required - -.PP -NOTE: Specific commands may have additional exit codes. Refer to the command's help for more information. - - -.SH EXAMPLE -.EX -# Clone a repository from a specific org -$ gh repo clone cli/cli - -# Clone a repository from your own account -$ gh repo clone myrepo - -# Clone a repo, overriding git protocol configuration -$ gh repo clone https://github.com/cli/cli -$ gh repo clone git@github.com:cli/cli.git - -# Clone a repository to a custom directory -$ gh repo clone cli/cli workspace/cli - -# Clone a repository with additional git clone flags -$ gh repo clone cli/cli -- --depth=1 - -.EE - - -.SH SEE ALSO -\fBgh-repo(1)\fR diff --git a/Main/gh-repo-create.1 b/Main/gh-repo-create.1 deleted file mode 100644 index 1de5de6..0000000 --- a/Main/gh-repo-create.1 +++ /dev/null @@ -1,154 +0,0 @@ -.nh -.TH "GH-REPO-CREATE" "1" "May 2025" "GitHub CLI 2.73.0" "GitHub CLI manual" - -.SH NAME -gh-repo-create - Create a new repository - - -.SH SYNOPSIS -\fBgh repo create [] [flags]\fR - - -.SH DESCRIPTION -Create a new GitHub repository. - -.PP -To create a repository interactively, use \fBgh repo create\fR with no arguments. - -.PP -To create a remote repository non-interactively, supply the repository name and one of \fB--public\fR, \fB--private\fR, or \fB--internal\fR\&. -Pass \fB--clone\fR to clone the new repository locally. - -.PP -If the \fBOWNER/\fR portion of the \fBOWNER/REPO\fR name argument is omitted, it -defaults to the name of the authenticating user. - -.PP -To create a remote repository from an existing local repository, specify the source directory with \fB--source\fR\&. -By default, the remote repository name will be the name of the source directory. - -.PP -Pass \fB--push\fR to push any local commits to the new repository. If the repo is bare, this will mirror all refs. - -.PP -For language or platform .gitignore templates to use with \fB--gitignore\fR, -\[la]https://github.com/github/gitignore\[ra]\&. - -.PP -For license keywords to use with \fB--license\fR, run \fBgh repo license list\fR or visit -\[la]https://choosealicense.com\[ra]\&. - -.PP -The repo is created with the configured repository default branch, see -\[la]https://docs.github.com/en/account\-and\-profile/setting\-up\-and\-managing\-your\-personal\-account\-on\-github/managing\-user\-account\-settings/managing\-the\-default\-branch\-name\-for\-your\-repositories\[ra]\&. - - -.SH OPTIONS -.TP -\fB--add-readme\fR -Add a README file to the new repository - -.TP -\fB-c\fR, \fB--clone\fR -Clone the new repository to the current directory - -.TP -\fB-d\fR, \fB--description\fR \fB\fR -Description of the repository - -.TP -\fB--disable-issues\fR -Disable issues in the new repository - -.TP -\fB--disable-wiki\fR -Disable wiki in the new repository - -.TP -\fB-g\fR, \fB--gitignore\fR \fB\fR -Specify a gitignore template for the repository - -.TP -\fB-h\fR, \fB--homepage\fR \fB\fR -Repository home page URL - -.TP -\fB--include-all-branches\fR -Include all branches from template repository - -.TP -\fB--internal\fR -Make the new repository internal - -.TP -\fB-l\fR, \fB--license\fR \fB\fR -Specify an Open Source License for the repository - -.TP -\fB--private\fR -Make the new repository private - -.TP -\fB--public\fR -Make the new repository public - -.TP -\fB--push\fR -Push local commits to the new repository - -.TP -\fB-r\fR, \fB--remote\fR \fB\fR -Specify remote name for the new repository - -.TP -\fB-s\fR, \fB--source\fR \fB\fR -Specify path to local repository to use as source - -.TP -\fB-t\fR, \fB--team\fR \fB\fR -The name of the organization team to be granted access - -.TP -\fB-p\fR, \fB--template\fR \fB\fR -Make the new repository based on a template repository - - -.SH ALIASES -gh repo new - - -.SH EXIT CODES -0: Successful execution - -.PP -1: Error - -.PP -2: Command canceled - -.PP -4: Authentication required - -.PP -NOTE: Specific commands may have additional exit codes. Refer to the command's help for more information. - - -.SH EXAMPLE -.EX -# Create a repository interactively -$ gh repo create - -# Create a new remote repository and clone it locally -$ gh repo create my-project --public --clone - -# Create a new remote repository in a different organization -$ gh repo create my-org/my-project --public - -# Create a remote repository from the current directory -$ gh repo create my-project --private --source=. --remote=upstream - -.EE - - -.SH SEE ALSO -\fBgh-repo(1)\fR diff --git a/Main/gh-repo-delete.1 b/Main/gh-repo-delete.1 deleted file mode 100644 index 6d47a75..0000000 --- a/Main/gh-repo-delete.1 +++ /dev/null @@ -1,46 +0,0 @@ -.nh -.TH "GH-REPO-DELETE" "1" "May 2025" "GitHub CLI 2.73.0" "GitHub CLI manual" - -.SH NAME -gh-repo-delete - Delete a repository - - -.SH SYNOPSIS -\fBgh repo delete [] [flags]\fR - - -.SH DESCRIPTION -Delete a GitHub repository. - -.PP -With no argument, deletes the current repository. Otherwise, deletes the specified repository. - -.PP -Deletion requires authorization with the \fBdelete_repo\fR scope. -To authorize, run \fBgh auth refresh -s delete_repo\fR - - -.SH OPTIONS -.TP -\fB--yes\fR -Confirm deletion without prompting - - -.SH EXIT CODES -0: Successful execution - -.PP -1: Error - -.PP -2: Command canceled - -.PP -4: Authentication required - -.PP -NOTE: Specific commands may have additional exit codes. Refer to the command's help for more information. - - -.SH SEE ALSO -\fBgh-repo(1)\fR diff --git a/Main/gh-repo-deploy-key-add.1 b/Main/gh-repo-deploy-key-add.1 deleted file mode 100644 index 8f4b097..0000000 --- a/Main/gh-repo-deploy-key-add.1 +++ /dev/null @@ -1,63 +0,0 @@ -.nh -.TH "GH-REPO-DEPLOY-KEY-ADD" "1" "May 2025" "GitHub CLI 2.73.0" "GitHub CLI manual" - -.SH NAME -gh-repo-deploy-key-add - Add a deploy key to a GitHub repository - - -.SH SYNOPSIS -\fBgh repo deploy-key add [flags]\fR - - -.SH DESCRIPTION -Add a deploy key to a GitHub repository. - -.PP -Note that any key added by gh will be associated with the current authentication token. -If you de-authorize the GitHub CLI app or authentication token from your account, any -deploy keys added by GitHub CLI will be removed as well. - - -.SH OPTIONS -.TP -\fB-w\fR, \fB--allow-write\fR -Allow write access for the key - -.TP -\fB-t\fR, \fB--title\fR \fB\fR -Title of the new key - - -.SH OPTIONS INHERITED FROM PARENT COMMANDS -.TP -\fB-R\fR, \fB--repo\fR \fB<[HOST/]OWNER/REPO>\fR -Select another repository using the [HOST/]OWNER/REPO format - - -.SH EXIT CODES -0: Successful execution - -.PP -1: Error - -.PP -2: Command canceled - -.PP -4: Authentication required - -.PP -NOTE: Specific commands may have additional exit codes. Refer to the command's help for more information. - - -.SH EXAMPLE -.EX -# Generate a passwordless SSH key and add it as a deploy key to a repository -$ ssh-keygen -t ed25519 -C "my description" -N "" -f ~/.ssh/gh-test -$ gh repo deploy-key add ~/.ssh/gh-test.pub - -.EE - - -.SH SEE ALSO -\fBgh-repo-deploy-key(1)\fR diff --git a/Main/gh-repo-deploy-key-delete.1 b/Main/gh-repo-deploy-key-delete.1 deleted file mode 100644 index dfd34cf..0000000 --- a/Main/gh-repo-deploy-key-delete.1 +++ /dev/null @@ -1,35 +0,0 @@ -.nh -.TH "GH-REPO-DEPLOY-KEY-DELETE" "1" "May 2025" "GitHub CLI 2.73.0" "GitHub CLI manual" - -.SH NAME -gh-repo-deploy-key-delete - Delete a deploy key from a GitHub repository - - -.SH SYNOPSIS -\fBgh repo deploy-key delete [flags]\fR - - -.SH OPTIONS INHERITED FROM PARENT COMMANDS -.TP -\fB-R\fR, \fB--repo\fR \fB<[HOST/]OWNER/REPO>\fR -Select another repository using the [HOST/]OWNER/REPO format - - -.SH EXIT CODES -0: Successful execution - -.PP -1: Error - -.PP -2: Command canceled - -.PP -4: Authentication required - -.PP -NOTE: Specific commands may have additional exit codes. Refer to the command's help for more information. - - -.SH SEE ALSO -\fBgh-repo-deploy-key(1)\fR diff --git a/Main/gh-repo-deploy-key-list.1 b/Main/gh-repo-deploy-key-list.1 deleted file mode 100644 index 9b4c6a6..0000000 --- a/Main/gh-repo-deploy-key-list.1 +++ /dev/null @@ -1,57 +0,0 @@ -.nh -.TH "GH-REPO-DEPLOY-KEY-LIST" "1" "May 2025" "GitHub CLI 2.73.0" "GitHub CLI manual" - -.SH NAME -gh-repo-deploy-key-list - List deploy keys in a GitHub repository - - -.SH SYNOPSIS -\fBgh repo deploy-key list [flags]\fR - - -.SH OPTIONS -.TP -\fB-q\fR, \fB--jq\fR \fB\fR -Filter JSON output using a jq expression - -.TP -\fB--json\fR \fB\fR -Output JSON with the specified fields - -.TP -\fB-t\fR, \fB--template\fR \fB\fR -Format JSON output using a Go template; see "gh help formatting" - - -.SH OPTIONS INHERITED FROM PARENT COMMANDS -.TP -\fB-R\fR, \fB--repo\fR \fB<[HOST/]OWNER/REPO>\fR -Select another repository using the [HOST/]OWNER/REPO format - - -.SH ALIASES -gh repo deploy-key ls - - -.SH JSON FIELDS -\fBcreatedAt\fR, \fBid\fR, \fBkey\fR, \fBreadOnly\fR, \fBtitle\fR - - -.SH EXIT CODES -0: Successful execution - -.PP -1: Error - -.PP -2: Command canceled - -.PP -4: Authentication required - -.PP -NOTE: Specific commands may have additional exit codes. Refer to the command's help for more information. - - -.SH SEE ALSO -\fBgh-repo-deploy-key(1)\fR diff --git a/Main/gh-repo-deploy-key.1 b/Main/gh-repo-deploy-key.1 deleted file mode 100644 index 539117d..0000000 --- a/Main/gh-repo-deploy-key.1 +++ /dev/null @@ -1,49 +0,0 @@ -.nh -.TH "GH-REPO-DEPLOY-KEY" "1" "May 2025" "GitHub CLI 2.73.0" "GitHub CLI manual" - -.SH NAME -gh-repo-deploy-key - Manage deploy keys in a repository - - -.SH SYNOPSIS -\fBgh repo deploy-key [flags]\fR - - -.SH AVAILABLE COMMANDS -.TP -\fBgh-repo-deploy-key-add(1)\fR -Add a deploy key to a GitHub repository - -.TP -\fBgh-repo-deploy-key-delete(1)\fR -Delete a deploy key from a GitHub repository - -.TP -\fBgh-repo-deploy-key-list(1)\fR -List deploy keys in a GitHub repository - - -.SH OPTIONS -.TP -\fB-R\fR, \fB--repo\fR \fB<[HOST/]OWNER/REPO>\fR -Select another repository using the [HOST/]OWNER/REPO format - - -.SH EXIT CODES -0: Successful execution - -.PP -1: Error - -.PP -2: Command canceled - -.PP -4: Authentication required - -.PP -NOTE: Specific commands may have additional exit codes. Refer to the command's help for more information. - - -.SH SEE ALSO -\fBgh-repo(1)\fR diff --git a/Main/gh-repo-edit.1 b/Main/gh-repo-edit.1 deleted file mode 100644 index 07c6a4d..0000000 --- a/Main/gh-repo-edit.1 +++ /dev/null @@ -1,155 +0,0 @@ -.nh -.TH "GH-REPO-EDIT" "1" "May 2025" "GitHub CLI 2.73.0" "GitHub CLI manual" - -.SH NAME -gh-repo-edit - Edit repository settings - - -.SH SYNOPSIS -\fBgh repo edit [] [flags]\fR - - -.SH DESCRIPTION -Edit repository settings. - -.PP -To toggle a setting off, use the \fB--=false\fR syntax. - -.PP -Changing repository visibility can have unexpected consequences including but not limited to: -.IP \(bu 2 -Losing stars and watchers, affecting repository ranking -.IP \(bu 2 -Detaching public forks from the network -.IP \(bu 2 -Disabling push rulesets -.IP \(bu 2 -Allowing access to GitHub Actions history and logs - -.PP -When the \fB--visibility\fR flag is used, \fB--accept-visibility-change-consequences\fR flag is required. - -.PP -For information on all the potential consequences, see -\[la]https://gh.io/setting\-repository\-visibility\[ra]\&. - - -.SH OPTIONS -.TP -\fB--accept-visibility-change-consequences\fR -Accept the consequences of changing the repository visibility - -.TP -\fB--add-topic\fR \fB\fR -Add repository topic - -.TP -\fB--allow-forking\fR -Allow forking of an organization repository - -.TP -\fB--allow-update-branch\fR -Allow a pull request head branch that is behind its base branch to be updated - -.TP -\fB--default-branch\fR \fB\fR -Set the default branch name for the repository - -.TP -\fB--delete-branch-on-merge\fR -Delete head branch when pull requests are merged - -.TP -\fB-d\fR, \fB--description\fR \fB\fR -Description of the repository - -.TP -\fB--enable-advanced-security\fR -Enable advanced security in the repository - -.TP -\fB--enable-auto-merge\fR -Enable auto-merge functionality - -.TP -\fB--enable-discussions\fR -Enable discussions in the repository - -.TP -\fB--enable-issues\fR -Enable issues in the repository - -.TP -\fB--enable-merge-commit\fR -Enable merging pull requests via merge commit - -.TP -\fB--enable-projects\fR -Enable projects in the repository - -.TP -\fB--enable-rebase-merge\fR -Enable merging pull requests via rebase - -.TP -\fB--enable-secret-scanning\fR -Enable secret scanning in the repository - -.TP -\fB--enable-secret-scanning-push-protection\fR -Enable secret scanning push protection in the repository. Secret scanning must be enabled first - -.TP -\fB--enable-squash-merge\fR -Enable merging pull requests via squashed commit - -.TP -\fB--enable-wiki\fR -Enable wiki in the repository - -.TP -\fB-h\fR, \fB--homepage\fR \fB\fR -Repository home page URL - -.TP -\fB--remove-topic\fR \fB\fR -Remove repository topic - -.TP -\fB--template\fR -Make the repository available as a template repository - -.TP -\fB--visibility\fR \fB\fR -Change the visibility of the repository to {public,private,internal} - - -.SH EXIT CODES -0: Successful execution - -.PP -1: Error - -.PP -2: Command canceled - -.PP -4: Authentication required - -.PP -NOTE: Specific commands may have additional exit codes. Refer to the command's help for more information. - - -.SH EXAMPLE -.EX -# Enable issues and wiki -$ gh repo edit --enable-issues --enable-wiki - -# Disable projects -$ gh repo edit --enable-projects=false - -.EE - - -.SH SEE ALSO -\fBgh-repo(1)\fR diff --git a/Main/gh-repo-fork.1 b/Main/gh-repo-fork.1 deleted file mode 100644 index a7d3e9f..0000000 --- a/Main/gh-repo-fork.1 +++ /dev/null @@ -1,74 +0,0 @@ -.nh -.TH "GH-REPO-FORK" "1" "May 2025" "GitHub CLI 2.73.0" "GitHub CLI manual" - -.SH NAME -gh-repo-fork - Create a fork of a repository - - -.SH SYNOPSIS -\fBgh repo fork [] [-- ...] [flags]\fR - - -.SH DESCRIPTION -Create a fork of a repository. - -.PP -With no argument, creates a fork of the current repository. Otherwise, forks -the specified repository. - -.PP -By default, the new fork is set to be your \fBorigin\fR remote and any existing -origin remote is renamed to \fBupstream\fR\&. To alter this behavior, you can set -a name for the new fork's remote with \fB--remote-name\fR\&. - -.PP -The \fBupstream\fR remote will be set as the default remote repository. - -.PP -Additional \fBgit clone\fR flags can be passed after \fB--\fR\&. - - -.SH OPTIONS -.TP -\fB--clone\fR -Clone the fork - -.TP -\fB--default-branch-only\fR -Only include the default branch in the fork - -.TP -\fB--fork-name\fR \fB\fR -Rename the forked repository - -.TP -\fB--org\fR \fB\fR -Create the fork in an organization - -.TP -\fB--remote\fR -Add a git remote for the fork - -.TP -\fB--remote-name\fR \fB (default "origin")\fR -Specify the name for the new remote - - -.SH EXIT CODES -0: Successful execution - -.PP -1: Error - -.PP -2: Command canceled - -.PP -4: Authentication required - -.PP -NOTE: Specific commands may have additional exit codes. Refer to the command's help for more information. - - -.SH SEE ALSO -\fBgh-repo(1)\fR diff --git a/Main/gh-repo-gitignore-list.1 b/Main/gh-repo-gitignore-list.1 deleted file mode 100644 index cf30a85..0000000 --- a/Main/gh-repo-gitignore-list.1 +++ /dev/null @@ -1,33 +0,0 @@ -.nh -.TH "GH-REPO-GITIGNORE-LIST" "1" "May 2025" "GitHub CLI 2.73.0" "GitHub CLI manual" - -.SH NAME -gh-repo-gitignore-list - List available repository gitignore templates - - -.SH SYNOPSIS -\fBgh repo gitignore list [flags]\fR - - -.SH ALIASES -gh repo gitignore ls - - -.SH EXIT CODES -0: Successful execution - -.PP -1: Error - -.PP -2: Command canceled - -.PP -4: Authentication required - -.PP -NOTE: Specific commands may have additional exit codes. Refer to the command's help for more information. - - -.SH SEE ALSO -\fBgh-repo-gitignore(1)\fR diff --git a/Main/gh-repo-gitignore-view.1 b/Main/gh-repo-gitignore-view.1 deleted file mode 100644 index 1a2935c..0000000 --- a/Main/gh-repo-gitignore-view.1 +++ /dev/null @@ -1,56 +0,0 @@ -.nh -.TH "GH-REPO-GITIGNORE-VIEW" "1" "May 2025" "GitHub CLI 2.73.0" "GitHub CLI manual" - -.SH NAME -gh-repo-gitignore-view - View an available repository gitignore template - - -.SH SYNOPSIS -\fBgh repo gitignore view