Socket
Socket
Sign inDemoInstall

git-quick-push

Package Overview
Dependencies
483
Maintainers
1
Versions
30
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 1.0.23 to 1.0.24

2

package.json
{
"name": "git-quick-push",
"description": "node script for git commands",
"version": "1.0.23",
"version": "1.0.24",
"author": "zhuzhuxiaggboy",

@@ -6,0 +6,0 @@ "private": false,

@@ -19,4 +19,4 @@ const ora = require("ora")

message: lolcat.fromString("please select the command"),
choices: ["git checkout", "git checkout -b"]
}
choices: ["git checkout", "git checkout -b"],
},
])

@@ -27,4 +27,4 @@ const { input } = await inquirer.prompt([

name: "input",
message: lolcat.fromString("input branch name :")
}
message: lolcat.fromString("input branch name :"),
},
])

@@ -41,4 +41,4 @@ run(`${type} ${input}`)

message: lolcat.fromString("please select the commit category"),
choices: commitArr
}
choices: commitArr,
},
])

@@ -49,4 +49,4 @@ const { input } = await inquirer.prompt([

name: "input",
message: lolcat.fromString("full details :")
}
message: lolcat.fromString("full details :"),
},
])

@@ -62,4 +62,4 @@ run(`git commit -m "${emojiArr[commitArr.indexOf(type)]}${input ? type + ": " + input : type}"`)

message: lolcat.fromString("select remote command"),
choices: ["git remote -v", "git remote add origin", "git remote set-url origin"]
}
choices: ["git remote -v", "git remote add origin", "git remote set-url origin"],
},
])

@@ -73,4 +73,4 @@ if (type === "git remote -v") {

name: "input",
message: lolcat.fromString("repository url:")
}
message: lolcat.fromString("repository url:"),
},
])

@@ -86,4 +86,4 @@ run(`${type} ${input}`)

message: lolcat.fromString("select push command"),
choices: ["git push -u", "git push"]
}
choices: ["git push -u", "git push"],
},
])

@@ -97,4 +97,4 @@ if (type === "git push") {

name: "input",
message: lolcat.fromString("repository name and branch name:")
}
message: lolcat.fromString("repository name and branch name:"),
},
])

@@ -109,4 +109,4 @@ run(`${type} ${input}`)

name: "input",
message: lolcat.fromString("merged branch name:")
}
message: lolcat.fromString("merged branch name:"),
},
])

@@ -122,4 +122,4 @@ run(`git merge --no-ff ${input}`)

message: lolcat.fromString("please choose git commands"),
choices: ["git init", "git branch", "git checkout", "git remote", "git commit", "git pull --rebase", "git push", "git merge --no-ff"]
}
choices: ["git init", "git branch", "git checkout", "git remote", "git commit", "git pull", "git push", "git merge --no-ff"],
},
])

@@ -140,3 +140,3 @@ if (!shell.which("git")) {

break
case "git pull --rebase":
case "git pull":
run(git)

@@ -143,0 +143,0 @@ break

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc