Hello, this is my first question.
I am now learning how to code by Ruby on Rails Tutorial. (https://www.railstutorial.org/book/toy_app#cha-a_toy_app)
and working on Chapter 2 Toy App (2.1)
Here is my code
--------------------------------------------------------------------------------
'https://kazukafka@bitbucket.org/kazukafka/toy_app.git'
hint: Updates were rejected because the tip of your current branch is behind
hint: its remote counterpart. Integrate the remote changes (e.g.
hint: 'git pull ...') before pushing again.
hint: See the 'Note about fast-forwards' in 'git push --help' for details.
ec2-user:~/environment/toy_app (master) $ git pull
Password for 'https://kazukafka@bitbucket.org':
remote: Counting objects: 19269, done.
remote: Compressing objects: 100% (13201/13201), done.
remote: Total 19269 (delta 5030), reused 19269 (delta 5030)
Receiving objects: 100% (19269/19269), 47.76 MiB | 12.68 MiB/s, done.
Resolving deltas: 100% (5030/5030), done.
From https://bitbucket.org/kazukafka/toy_app
* [new branch] test1 -> origin/test1
There is no tracking information for the current branch.
Please specify which branch you want to merge with.
See git-pull(1) for details.
git pull <remote> <branch>
If you wish to set tracking information for this branch you can do so with:
git branch --set-upstream-to=origin/<branch> master
ec2-user:~/environment/toy_app (master) $ git pull origin test1
Password for 'https://kazukafka@bitbucket.org':
remote: Invalid username or password. If you log in via a third party service you must ensure you have an account password set in your account profile.
fatal: Authentication failed for 'https://kazukafka@bitbucket.org/kazukafka/toy_app.git/'
ec2-user:~/environment/toy_app (master) $
--------------------------------------------------------------------------------
This issue is driving me so crazy, I am not sure about what's going on.
If somebody understands how to sort it out, please explain me.
All my best