Hello,
while following the DMTN-023 Pipeline Command-Line Drivers tutorial, I stumbled with the problem of cloning test data. I followed these instructions for installing the git lfs
extension and for configuring my ~/.gitconfig
and ~/.git-credentials
files. The issue appears when I try to clone a test data repository: git-lfs
keeps asking my Github password.
Here is what I get:
$ git lfs version
git-lfs/1.2.0 (GitHub; darwin amd64; go 1.6.1; git 9bd3b8e)
$ git clone https://github.com/lsst/testdata_decam.git
Cloning into 'testdata_decam'...
remote: Counting objects: 86, done.
remote: Compressing objects: 100% (9/9), done.
remote: Total 86 (delta 2), reused 0 (delta 0), pack-reused 76
Unpacking objects: 100% (86/86), done.
Checking connectivity... done.
Downloading rawData/calib/bpm/2013-07-16/defect01.fits (32.00 MB)
Username for 'https://git-lfs.lsst.codes': airnandez
Password for 'https://airnandez@git-lfs.lsst.codes': <I type my password here>
Username for 'https://git-lfs.lsst.codes': airnandez
Password for 'https://airnandez@git-lfs.lsst.codes': <I type my password here>
Username for 'https://git-lfs.lsst.codes': airnandez
Password for 'https://airnandez@git-lfs.lsst.codes': <I type my password here>
Username for 'https://git-lfs.lsst.codes': airnandez
Password for 'https://airnandez@git-lfs.lsst.codes': <I type my password here>
Username for 'https://git-lfs.lsst.codes': ^Cwarning: Clone succeeded, but checkout failed.
You can inspect what was checked out with 'git status'
and retry the checkout with 'git checkout -f HEAD'
Exiting because of "interrupt" signal.
Even if I provide my correct password, git-lfs
seems not happy with it. I checked that this is the password I use to successfully login to github.com. I observe the same behaviour when trying to clone other repositories with commands such as git clone https://github.com/lsst/ci_hsc.git
.
I was wondering if some registration of my github.com account is needed in order to be able to clone LSST test data. Where should I look at to understand what is happening? The -v
option of git clone
does not provide further information.
Execution environment: OS X 10.11.5, git version 2.6.4 (Apple Git-63)