Coder Social home page Coder Social logo

Comments (7)

Staubgeborener avatar Staubgeborener commented on August 26, 2024

By "revoke" do you actually really mean that GitHub discards the token? So we are actually talking about the token being marked as "revoke" in your GitHub settings and not that you get simply am error message because the token is invalid (if so, please post the error message here)?

That's odd. The repo can be private or public. Sounds like this behavior tbh.

But that would mean that you either don't have a .gitignore file in the klipper-backup folder, or you have edited the .gitignore. This prevents the token from being pushed to GitHub respectively that the token will be revoked.

from klipper-backup.

jaakko000 avatar jaakko000 commented on August 26, 2024

Yes, discards the token. Goes away from the list of available tokens. Goes away if repo is public. That behavior would match imo. I have a .gitignore (only found with "ls -la"). Havent edited it and looks the same as yours. Seemingly works fine when i made the repo private. Weird. So maybe it's solved? Works almost perfectly now that I got past that hurdle.

Just the moonraker updater klipper-backup is saying invalid and asking for soft or hard reset? Any ideas? Followed the guide

image

from klipper-backup.

Staubgeborener avatar Staubgeborener commented on August 26, 2024

Yeah, a private repository will work as GitHub security guidelines don't affect token from being revoked after pushing them. This only happens in public repository because of obviously reasons. But again, this is weird. Can you check your private repository on GitHub? Is the token somewhere in this repository in any file? My first guess was, that you put the token also in the .env.example (which will be pushed). It has to be somewhere.

About the soft/hard reset issue: i think I now why this happens and I have a bad feeling about this. (Long story short: the GitHub repository klipper-Backup will be re-initialized with your own repository and not this one here, this will lead to exactly this error because the data in your folder is obviously different from the data in this repository - like you edit stuff in the .env file for example and other file will be automatically removed while installation. This also leads to a "wrong" commit history etc).

I will look into detail in a week. The macro should work anyway, I think you can simply ignore it for the time.

from klipper-backup.

jaakko000 avatar jaakko000 commented on August 26, 2024

Can you check your private repository on GitHub? Is the token somewhere in this repository in any file? My first guess was, that you put the token also in the .env.example (which will be pushed). It has to be somewhere.

It is in .env. Nowhere else. I didn't get .env by following the guide and only got .env.example. Then I renamed that to .env and then put all that stuff in normally. Maybe it didnt change/register properly or something? How would I go about fixing that?

About the soft/hard reset issue:

Your explanation makes sense. Hope you can fix it. It works for the time being so i'll just run it manually. Here is what running the script looks like. Your explanation here likely has to do with the "glut of gotchas" so I figured I'd post this. (newest at the top).

Edit: Ah it makes klipper_backup/klipper/config/config/ so looks like you're on the right track. I changed the cp -r or whatever in script to make it work with directories. That should be the default btw because it's easier to backup just the config folder and not separately every single thing you want. I had a macros folder so I had to do that anyway.

Edit2: Am I supposed to be git pushing/pulling since I get Cannot rewrite branches: You have unstaged changes?

22.51
Command {update_git_script} finished
22.51
To https://github.com/jaakko000/Klipper_backup.git
ee8305d..199743d main -> main
22.51
[main 199743d] New backup from 13-06-23
23 files changed, 1772 insertions(+)
create mode 100644 klipper/config/config/.moonraker.conf.bkp
create mode 100644 klipper/config/config/crowsnest.conf
create mode 100644 klipper/config/config/fan_tach_monitor.cfg
create mode 100644 klipper/config/config/macros/Adaptive_Mesh.cfg
create mode 100644 klipper/config/config/macros/CG28.cfg
create mode 100644 klipper/config/config/macros/auto_z.cfg
create mode 100644 klipper/config/config/macros/auto_z_guide.cfg
create mode 100644 klipper/config/config/macros/klack.cfg
create mode 100644 klipper/config/config/macros/macros.cfg
create mode 100644 klipper/config/config/macros/nozzle_prime.cfg
create mode 100644 klipper/config/config/macros/parking.cfg
create mode 100644 klipper/config/config/macros/pauseresumecancel.cfg
create mode 100644 klipper/config/config/macros/power_plug.cfg
create mode 100644 klipper/config/config/macros/start_print.cfg
create mode 100644 klipper/config/config/macros/test_speed.cfg
create mode 100644 klipper/config/config/macros/update_git.cfg
create mode 120000 klipper/config/config/mainsail.cfg
create mode 100644 klipper/config/config/moonraker.conf
create mode 100644 klipper/config/config/printer-20230607_211240.cfg
create mode 100644 klipper/config/config/printer.cfg
create mode 100644 klipper/config/config/shell_command.cfg
create mode 100644 klipper/config/config/sonar.conf
create mode 120000 klipper/config/config/timelapse.cfg
22.51
index filter failed: git rm -r --cached --ignore-unmatch "$parent_path"/.env
22.51
Rewrite 78ee9915c9e22434f2686757456d8a072ae5c31d (1/20) (0 seconds passed, remaining 0 predicted) fatal: /.env: '/.env' is outside repository at '/home/pi/klipper-backup/.git-rewrite/t'
22.51
Proceeding with filter-branch...
22.51
WARNING: git-filter-branch has a glut of gotchas generating mangled history
rewrites. Hit Ctrl-C before proceeding to abort, then use an
alternative filtering tool such as 'git filter-repo'
(https://github.com/newren/git-filter-repo/) instead. See the
filter-branch manual page for more details; to squelch this warning,
set FILTER_BRANCH_SQUELCH_WARNING=1.
22.51
Reinitialized existing Git repository in /home/pi/klipper-backup/.git/
22.51
Running Command {update_git_script}...:

from klipper-backup.

Staubgeborener avatar Staubgeborener commented on August 26, 2024

It is in .env. Nowhere else. I didn't get .env by following the guide and only got .env.example. Then I renamed that to .env and then put all that stuff in normally. Maybe it didnt change/register properly or something? How would I go about fixing that?

What kind of installation did you use? Sounds like this one, before i edited this wiki page a few days ago. Previously the step was

cd ~
git clone https://github.com/Staubgeborener/klipper-backup
chmod +x ./klipper-backup/*.sh && ./klipper-backup/install.sh

which leadsto a missing .env file, so now the correct way (watch out for the -main!) is

cd ~
git clone https://github.com/Staubgeborener/klipper-backup klipper-backup-main
chmod +x ./klipper-backup-main/*.sh && ./klipper-backup-main/install.sh

Hope you can fix it.

Actually the own backup repository should be in his own folder, which is independent from the klipper-backup folder - but while updating, klipper-backup must know exactly what this "own backup" folder is called and/or what the path is. I have to see which is the most elegant way.

Edit2: Am I supposed to be git pushing/pulling since I get Cannot rewrite branches: You have unstaged changes?

Never had this issue before, i can't tell you what caused this on your side. But check all modified files with a git status, this should help you to get a better view. After that i would try to commit this manual like git add --all && git commit -m "whatever" && git push, maybe you will need a git pull but this really depends on your local and remote files.

from klipper-backup.

github-actions avatar github-actions commented on August 26, 2024

This issue is stale because it has been open for 30 days with no activity.

from klipper-backup.

github-actions avatar github-actions commented on August 26, 2024

This issue was closed because it has been inactive for 14 days since being marked as stale.

from klipper-backup.

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.