Git Product home page Git Product logo

Comments (6)

jcubic avatar jcubic commented on June 7, 2024

Can you share your code? The screenshot of the error doesn't say anything.

from isomorphic-git.

Notplayingallday383 avatar Notplayingallday383 commented on June 7, 2024

Sure this is how I did it for the push command If you want the rest of the script I can send that too.

    if (!args[1]) {
                displayOutput("Usage: git push <directory>");
                createNewCommandInput();
                return;
            }
            const dirName = args[1];
            const targetDir = `/home/${dirName}`;
            try {
                const result = await window.parent.tb.dialog.Auth({
                    title: "GitHub Authentication",
                    onOk: async ({ username, password }) => {
                        try {
                            const gitfetchResult = await gitfetch.push({
                                fs: window.parent.Filer.fs,
                                http: http,
                                dir: targetDir,
                                corsProxy: 'https://cors.isomorphic-git.org',
                                remote: 'origin',
                                force: false,
                                onMessage: (e) => {
                                    displayOutput(e);
                                },
                                author: {
                                    name: user,
                                    email: `${user}@terbiumux.net`
                                },
                                onAuth: () => {
                                    return { username, password };
                                }
                            });
                            displayOutput(JSON.stringify(gitfetchResult, null, 2));
                        } catch (error) {
                            displayError(`Error: ${error.message}`);
                        } finally {
                            createNewCommandInput();
                        }
                    },
                    onCancel: () => {
                        displayError("GitHub authentication canceled");
                        createNewCommandInput();
                    }
                });
            } catch (error) {
                displayError(`Error: ${error.message}`);
                createNewCommandInput();
            }

from isomorphic-git.

jcubic avatar jcubic commented on June 7, 2024

But you know that password property needs to be a TOKEN created on GitHub with repository access permission? It's named password but it needs to be a token. GitHub doesn't allow to use of passwords anymore.

I'm not sure if this is just something that isomorphic-git uses or is in fact GitHub thing to use TOKEN as a password.

from isomorphic-git.

Notplayingallday383 avatar Notplayingallday383 commented on June 7, 2024

Yes I was authenticating with my token and like It basically creates commits like this without any data: Notplayingallday383/tb-git-test@01ba646 As for the token Im pretty sure I gave it the correct permissions:
image

from isomorphic-git.

jcubic avatar jcubic commented on June 7, 2024

Can you share all the code exactly what you do. You need to run git.add and git.commit before you push the changes.

from isomorphic-git.

Notplayingallday383 avatar Notplayingallday383 commented on June 7, 2024

Can you share all the code exactly what you do. You need to run git.add and git.commit before you push the changes.

Oh I see I tried it with git add and it worked so thank you for your help and sorry for making this issue since it seemed like a misunderstanding problem on my end

from isomorphic-git.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.