git log returns me correct info
commit 9edb3f66fd807b096b48283debdcddccfea34bad
Merge: e5f95fd897 b6d18fbdf6
Author: Marius Bakke <[email protected]>
Date: Tue May 26 22:30:51 2020 +0200
Merge branch 'master' into staging
On Wed, Feb 26, 2025 at 1:12 PM 45mg <[email protected]> wrote:
>
> Adam <[email protected]> writes:
>
> > Hi Felix,
> > here are the commands
> > ```
> > cd ~/Downloads/
> > git clone https://git.savannah.gnu.org/git/guix.git
> > ```
> > After that I wrote ""file:///home/user/Downloads/guix" to my
> > ~/.config/guix/channels.scm so it looks like this
> > ```
> > (list (channel
> > (name 'guix)
> > ;; (url "https://git.savannah.gnu.org/git/guix.git")
> > (url "file:///home/user/Downloads/guix")
> > (branch "master")
> > (introduction
> > (make-channel-introduction
> > "9edb3f66fd807b096b48283debdcddccfea34bad"
> > (openpgp-fingerprint
> > "BBB0 2DDF 2CEA F6A8 0D1D E643 A2A0 6DF2 A33A 54FA")))))
> > ```
>
> No real idea what this is, but some things you could try:
>
> - do `git log 9edb3f66fd807b096b48283debdcddccfea34bad` in your checkout
> and see if it finds the commit. If it doesn't then you may need to
> clone it again
> - Try adding `/.git` to the end of the url. It would also probably work
> without the `file://` prefix (but that's probably not related)
>
> HTH