Skip to content
Merged
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
4 changes: 2 additions & 2 deletions .git-ai/lancedb.tar.gz
Git LFS file not shown
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ jobs:
- name: Restore package name for npmjs
if: ${{ env.RELEASE_TAG != '' }}
run: |
npm pkg set name="git-ai"
npm pkg set name="@mars167/git-ai"

- name: Setup Node (npmjs.org)
if: ${{ env.RELEASE_TAG != '' }}
Expand All @@ -123,9 +123,9 @@ jobs:
echo "" >> $GITHUB_STEP_SUMMARY
echo "### Published to:" >> $GITHUB_STEP_SUMMARY
echo "- [x] GitHub Packages: \`@${{ github.repository_owner }}/git-ai\`" >> $GITHUB_STEP_SUMMARY
echo "- [x] npmjs.org: \`git-ai\`" >> $GITHUB_STEP_SUMMARY
echo "- [x] npmjs.org: \`@mars167/git-ai\`" >> $GITHUB_STEP_SUMMARY
echo "" >> $GITHUB_STEP_SUMMARY
echo "### Install:" >> $GITHUB_STEP_SUMMARY
echo "\`\`\`bash" >> $GITHUB_STEP_SUMMARY
echo "npm install -g git-ai" >> $GITHUB_STEP_SUMMARY
echo "npm install -g @mars167/git-ai" >> $GITHUB_STEP_SUMMARY
echo "\`\`\`" >> $GITHUB_STEP_SUMMARY
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ graph TB
### 1. Install

```bash
npm install -g git-ai
npm install -g @mars167/git-ai
```

### 2. Initialize Repository
Expand Down
2 changes: 1 addition & 1 deletion README.zh-CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ graph TB
### 1. 安装

```bash
npm install -g git-ai
npm install -g @mars167/git-ai
```

### 2. 初始化仓库
Expand Down
4 changes: 2 additions & 2 deletions install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -116,10 +116,10 @@ main() {
info "Installing git-ai CLI..."

if [ "$GLOBAL_INSTALL" = true ]; then
npm install -g git-ai
npm install -g @mars167/git-ai
success "git-ai installed globally"
else
npm install git-ai
npm install @mars167/git-ai
success "git-ai installed locally"
fi

Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "git-ai",
"version": "2.2.0",
"name": "@mars167/git-ai",
"version": "2.3.0",
"main": "dist/index.js",
"bin": {
"git-ai": "dist/bin/git-ai.js"
Expand Down