File: can__39__t_sync_content.mdwn

package info (click to toggle)
git-annex 10.20250416-2
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 73,572 kB
  • sloc: haskell: 90,656; javascript: 9,103; sh: 1,469; makefile: 211; perl: 137; ansic: 44
file content (35 lines) | stat: -rw-r--r-- 1,016 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
Hi,

I'm completely new to git-annex, I'm trying to follow this guide:

https://git-annex.branchable.com/tips/centralized_git_repository_tutorial/on_GitLab/

All steps succeeded except the `git annex sync --content` which results in the following message:

'Remote origin not usable by git-annex; setting annex-ignore'

Here is an example of the output I receive:

    $ git status
    On branch master
    Your branch is up-to-date with 'origin/master'.
    nothing to commit, working directory clean
    $
    $ git push origin master git-annex
    Everything up-to-date
    $
    $ git annex sync --content
    
      Remote origin not usable by git-annex; setting annex-ignore
    commit  ok
    pull origin
    ok
    pull origin
    ok
    $
    $ git config remote.origin.url
    https://user:pass@gitlab.com/user/repname.git

Is it required to use the ssh protocol in order to get annex working?

I'm using https since I'm behind a firewall, and the ssh protocol always time out. Is there anything I can do?