Skip to content

Add book app with create and list features - Adarsh Naijo#1625

Open
adarsh-naijo wants to merge 4 commits into
gtech-mulearn:mainfrom
adarsh-naijo:develop
Open

Add book app with create and list features - Adarsh Naijo#1625
adarsh-naijo wants to merge 4 commits into
gtech-mulearn:mainfrom
adarsh-naijo:develop

Conversation

@adarsh-naijo

Copy link
Copy Markdown

This PR submits my completed Git and GitHub Enablement Task.

Changes Included:

  • Created my personal app directory adarsh_naijo_book_app/add_books_feature.
  • Added create_book.txt to the develop branch to allow authors to add new books[cite: 1].
  • Added list_all_books.txt on a separate feature branch to display books in ascending order[cite: 1].
  • Successfully merged the feature branch into the develop branch[cite: 1].

@greptile-apps

greptile-apps Bot commented Jun 29, 2026

Copy link
Copy Markdown

Greptile Summary

This PR adds two plain-text placeholder files inside a new personal app directory (adarsh_naijo_book_app/add_books_feature/) as part of a Git and GitHub enablement exercise demonstrating branch management and merging workflows.

  • create_book.txt was added on the develop branch to represent an "add new book" feature.
  • list_all_books.txt was added on a separate feature branch and merged into develop, demonstrating the intended branching workflow for the exercise.

Confidence Score: 5/5

Safe to merge — only plain-text placeholder files are added inside a personal subdirectory with no shared code paths.

Both files are simple, self-contained text descriptions with no executable code, no shared dependencies, and no risk of affecting other contributors' work in the repository.

No files require special attention.

Important Files Changed

Filename Overview
adarsh_naijo_book_app/add_books_feature/create_book.txt New text file describing the "create book" feature; single-line placeholder content for a Git enablement exercise.
adarsh_naijo_book_app/add_books_feature/list_all_books.txt New text file describing the "list all books" feature; two-line placeholder content added via a separate feature branch and merged into develop.

Sequence Diagram

%%{init: {'theme': 'neutral'}}%%
sequenceDiagram
    participant D as develop branch
    participant F as feature branch
    participant M as main (PR target)

    D->>D: Add create_book.txt
    D->>F: Branch off (feature)
    F->>F: Add list_all_books.txt
    F->>D: Merge feature → develop
    D->>M: Open PR (this PR)
Loading
%%{init: {'theme': 'base', 'themeVariables': {"darkMode": true, "background": "#0d1117", "primaryColor": "#21262d", "primaryTextColor": "#e6edf3", "primaryBorderColor": "#8b949e", "lineColor": "#8b949e", "textColor": "#e6edf3", "edgeLabelBackground": "#161b22", "actorBkg": "#21262d", "actorBorder": "#8b949e", "actorTextColor": "#e6edf3", "actorLineColor": "#8b949e", "signalColor": "#8b949e", "signalTextColor": "#e6edf3", "noteBkgColor": "#373320", "noteBorderColor": "#d4a72c", "noteTextColor": "#f0e6c0", "labelBoxBkgColor": "#21262d", "labelBoxBorderColor": "#8b949e", "labelTextColor": "#e6edf3", "loopTextColor": "#e6edf3", "activationBkgColor": "#30363d", "activationBorderColor": "#8b949e"}}}%%
sequenceDiagram
    participant D as develop branch
    participant F as feature branch
    participant M as main (PR target)

    D->>D: Add create_book.txt
    D->>F: Branch off (feature)
    F->>F: Add list_all_books.txt
    F->>D: Merge feature → develop
    D->>M: Open PR (this PR)
Loading

Reviews (1): Last reviewed commit: "Merge branch 'feature' into develop" | Re-trigger Greptile

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant