🚀 Socket Launch Week Day 5:Introducing Repository Access Permissions and Custom Roles.Learn more
Sign In

git-stack-cli

Package Overview
Dependencies
Maintainers
1
Versions
127
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

git-stack-cli - npm Package Compare versions

Comparing version
2.2.7
to
2.2.8
+1
-1
package.json
{
"name": "git-stack-cli",
"version": "2.2.7",
"version": "2.2.8",
"description": "",

@@ -5,0 +5,0 @@ "author": "magus",

@@ -69,2 +69,4 @@ import path from "node:path";

await spawn.sync(`git checkout master`);
await spawn.sync("git fetch --prune");
await spawn.sync("git reset --hard origin/master");

@@ -71,0 +73,0 @@ // homebrew tap formula (binaries)

@@ -12,2 +12,3 @@ import yargs from "yargs";

yargs(hideBin(process.argv))
.scriptName("git stack")
.usage("Usage: git stack [command] [options]")

@@ -14,0 +15,0 @@

@@ -11,2 +11,3 @@ import * as React from "react";

import { Parens } from "~/app/Parens";
import { Status } from "~/app/Status";
import { Store } from "~/app/Store";

@@ -132,3 +133,3 @@ import * as CommitMetadata from "~/core/CommitMetadata";

branch_name: <Brackets>{branch_name}</Brackets>,
origin_branch: <Brackets>{`origin/${master_branch}`}</Brackets>,
origin_branch: <Brackets>{master_branch}</Brackets>,
}}

@@ -142,4 +143,7 @@ />,

state.commit_range = next_commit_range;
state.step = "status";
});
actions.output(<Status />);
actions.exit(0);
} catch (err) {

@@ -146,0 +150,0 @@ actions.error("Unable to rebase.");

Sorry, the diff of this file is too big to display