Socket
Socket
Sign inDemoInstall

gitk

Package Overview
Dependencies
Maintainers
1
Versions
40
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gitk - npm Package Compare versions

Comparing version 0.34.0 to 0.35.0

dist/commands/commit/index.d.ts

8

dist/commands/fetch/index.js
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.fetch = void 0;
const child_process_1 = require("child_process");
const terminal_1 = require("../../utils/terminal");
function fetch() {
(0, child_process_1.execSync)(`git fetch -p`);
(0, child_process_1.execSync)(`git branch -vv | grep "gone" | awk '{print $1}' | xargs git branch -D`);
(0, terminal_1.terminal)(`git fetch -p`);
(0, terminal_1.terminal)(`git branch -vv | grep "gone" | awk '{print $1}' | xargs git branch -D`);
console.log();
console.log("# Current Branches");
console.log((0, child_process_1.execSync)(`git branch`).toString());
console.log((0, terminal_1.terminal)(`git branch`));
}
exports.fetch = fetch;
//# sourceMappingURL=index.js.map

@@ -10,2 +10,3 @@ #!/usr/bin/env node

const checkout_1 = require("./commands/checkout");
const commit_1 = require("./commands/commit");
const program = new commander_1.Command("gitk");

@@ -33,3 +34,8 @@ program.version((0, getCurrentVersion_1.getCurrentVersion)());

.action(checkout_1.checkout);
program
.command("commit")
.requiredOption("-m, --message <type>", "์ปค๋ฐ‹ ์ œ๋ชฉ")
.description("์ง€๋ผ ํƒœ๊ทธ๋ฅผ ์ž๋™์œผ๋กœ ๋ถ™ํ˜€์ฃผ๋Š” git commit์„ ํ•ฉ๋‹ˆ๋‹ค.")
.action(commit_1.commit);
program.parse();
//# sourceMappingURL=index.js.map
{
"name": "gitk",
"version": "0.34.0",
"version": "0.35.0",
"description": "๐Ÿ”ง Git Shortcut Cli Application",

@@ -5,0 +5,0 @@ "author": "rhea-so",

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with โšก๏ธ by Socket Inc