Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[GIT] Fix --force-with-lease option #238

Merged
merged 1 commit into from
May 27, 2021
Merged

[GIT] Fix --force-with-lease option #238

merged 1 commit into from
May 27, 2021

Conversation

nirtamir2
Copy link
Contributor

@nirtamir2 nirtamir2 commented May 27, 2021

What kind of change does this PR introduce?
Bug fix

What is the current behavior?
Writing git push does not auto-complete git push --force-with-lease

What is the new behavior (if this is a feature change)?
Autocompletion for git push --force-with-lease

Additional info:
Haven't tested it locally, but it seems like a small typo

@withfig-bot
Copy link
Collaborator

Overview

dev/git.ts:

Info:

Script:
git log --oneline
postProcess(function):

 function (out) {
      if (out.startsWith("fatal:")) {
        return [];
      }

      return out.split("\n").map((line) => {
        return {
          name: line.substring(0, 7),
          icon: "fig://icon?type=node",
          description: line.substring(7),
        };
      });
    }

Script:
git stash list
postProcess(function):

 function (out) {
      if (out.startsWith("fatal:")) {
        return [];
      }

      return out.split("\n").map((file) => {
        return {
          name: file.split(":")[2],
          insertValue: file.split(":")[0],
          icon: `fig://icon?type=node`,
        };
      });
    }

Script:
git diff --cached --name-only
postProcess(function):

 function (out) {
      if (out.startsWith("fatal:")) {
        return [];
      }

      return out.split("\n").map((file) => {
        return {
          name: file,
          insertValue: "-- " + file,
          icon: `fig://icon?type=file`,
          description: "staged file",
        };
      });
    }

Script:
git branch --no-color
postProcess(function):

 function (out) {
      if (out.startsWith("fatal:")) {
        return [];
      }
      return out.split("\n").map((elm) => {
        // current branch
        if (elm.includes("*")) {
          return {
            name: elm.replace("*", "").trim(),
            description: "current branch",
            icon: "⭐️",
            // priority: 100,
          };
        }

        return {
          name: elm.trim(),
          description: "branch",
          icon: "fig://icon?type=git",
        };
      });
    }

Script:
git remote -v
postProcess(function):

 function (out) {
      const remoteURLs = out.split("\n").reduce((dict, line) => {
        const pair = line.split("\t");
        const remote = pair[0];
        console.log(remote, pair);
        const url = pair[1].split(" ")[0];

        dict[remote] = url;
        return dict;
      }, {});

      return Object.keys(remoteURLs).map((remote) => {
        const url = remoteURLs[remote];
        let icon = "box";
        if (url.includes("github.com")) {
          icon = "github";
        }

        if (url.includes("gitlab.com")) {
          icon = "gitlab";
        }

        if (url.includes("heroku.com")) {
          icon = "heroku";
        }
        return {
          name: remote,
          icon: `fig://icon?type=${icon}`,
          description: "remote",
        };
      });
    }

Single Scripts:

  • git tag --list
  • git status --short
  • git diff --name-only

@withfig-bot
Copy link
Collaborator

Hello @nirtamir2,
thank you very much for creating a Pull Request!
Here is a small checklist to get this PR merged as quickly as possible:

  • Do all subcommands / options which take arguments have the arg property (arg: {})?
  • Are all options modular? E.g. a -u -x instead of -aux
  • Have all other checks passed?

Please add a 👍 as a reaction to this comment to show that you read this.

@QuiiBz QuiiBz changed the title fix: git push --force-with-lease option [GIT] Fix --force-with-lease option May 27, 2021
Copy link
Contributor

@cstrnt cstrnt left a comment

Choose a reason for hiding this comment

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

Thank you very much :)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants