Skip to content

Instantly share code, notes, and snippets.

@frebib
Created February 2, 2022 15:43
Show Gist options
  • Save frebib/604e648e930f1ec7c4367310ccc78295 to your computer and use it in GitHub Desktop.
Save frebib/604e648e930f1ec7c4367310ccc78295 to your computer and use it in GitHub Desktop.
$ git clone https://github.com/JefMasereel/mgmt.git .
Cloning into '.'...
remote: Enumerating objects: 13096, done.
remote: Counting objects: 100% (922/922), done.
remote: Compressing objects: 100% (426/426), done.
remote: Total 13096 (delta 496), reused 776 (delta 446), pack-reused 12174
Receiving objects: 100% (13096/13096), 5.14 MiB | 9.89 MiB/s, done.
Resolving deltas: 100% (8998/8998), done.
$ git config --local user.email me@frebib.net && git config --local user.signingkey CFBB6A86
$ git remote add upstream https://github.com/purpleidea/mgmt.git
$ git fetch upstream
remote: Enumerating objects: 2108, done.
remote: Counting objects: 100% (1454/1454), done.
remote: Compressing objects: 100% (87/87), done.
remote: Total 2108 (delta 1373), reused 1421 (delta 1364), pack-reused 654
Receiving objects: 100% (2108/2108), 680.83 KiB | 3.91 MiB/s, done.
Resolving deltas: 100% (1505/1505), completed with 744 local objects.
From https://github.com/purpleidea/mgmt
* [new branch] master -> upstream/master
$ git rebase upstream/master
warning: skipped previously applied commit ab0ec2a
hint: use --reapply-cherry-picks to include skipped commits
hint: Disable this message with "git config advice.skippedCherryPicks false"
Successfully rebased and updated refs/heads/master.
$ git log --color --format=fuller --stat
f2b7890 2022-02-02 15:05:45 +0000 you@example.com engine: resources: Add hetzner_vm resource
31dfd48 2021-11-28 14:47:15 +0000 you@example.com res/hetzner: cleaner waits and error checks
59b8b4f 2021-11-28 13:13:38 +0000 you@example.com res/hetzner: added waits to checkapply
23215ea 2021-11-26 14:13:25 +0000 you@example.com hetzner/res: corrected checkapply, added waits
3afd60e 2021-11-26 11:05:20 +0000 you@example.com res/hetzner: cleanup ctx, strings, comments
e0ce78c 2021-11-23 21:36:11 +0000 you@example.com res/hetzner: mcl attempt one
e83b3db 2021-11-23 11:33:45 +0000 you@example.com res/hetzner: added internal cmp functions
e6cfcc9 2021-11-23 11:16:39 +0000 you@example.com res/hetzner: refactored checkapply
d9a33f5 2021-11-22 14:56:19 +0000 you@example.com res/hetzner: removed API queries from Validate
bc6fedc 2021-11-22 14:36:58 +0000 you@example.com res/hetzner: removed obj prefix from messages
72439f3 2021-11-22 14:20:18 +0000 you@example.com res/hetzner: some style fixes
2d28a25 2021-11-11 17:22:49 +0000 jef.masereel@fibricheck.com HetznerRes first draft
# below here is purpleidea/master
bf7e454 2021-12-01 22:06:06 +0000 me@frebib.net engine: util: Skip unexported fields in struct field mapping
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment