Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions file1-feature-branch-1741803215661.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# File 1
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👋 Single review comment: Consider adding error handling here.

This is the first test file created by PullPuppet.

This file demonstrates markdown capabilities and could include:
- Bullet points
- Code examples
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

💡 This could benefit from additional documentation.

- Links
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👋 Great start! Consider adding error handling here.

16 changes: 16 additions & 0 deletions file2-feature-branch-1741803215661.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
// JavaScript Example

function greet(name) {
return `Hello, ${name}!`;
}

// Example usage
console.log(greet("GitHub"));

// Error handling example
function safeGreet(name) {
if (typeof name !== "string") {
throw new Error("Name must be a string");
}
return greet(name);
}
15 changes: 15 additions & 0 deletions file3-feature-branch-1741803215661.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"projectName": "PullPuppet Demo",
"version": "1.0.0",
"description": "This is a sample JSON configuration file",
"author": "PullPuppet",
"license": "MIT",
"dependencies": {
"example-lib": "^1.0.0",
"another-lib": "^2.3.4"
},
"repository": {
"type": "git",
"url": "https://github.com/example/repo"
}
}