Shopify Import Bundle Install Not Working - import

I'm trying to add #import to my Shopify theme development workflow via this guide on Github here.
Following the Grunt.js guide, I get as far as Step #5 when I'm supposed to run bundle install. When running this I get the following error:
Fetching git#github.com:Shopify/shopify_theme.git
Cloning into bare repository '/usr/local/rvm/gems/ruby-2.1.1/cache/bundler/git/shopify_theme-3de0c1fc88f476e318398688d2f3d8495e4f5062'...
Warning: Permanently added the RSA host key for IP address '192.30.252.131' to the list of known hosts.
Permission denied (publickey).
fatal: Could not read from remote repository.
It's also giving me an error of:
--bare --no-hardlinks` in directory
Any ideas what's gone wrong? Still fairly new to the command line and can't work out what the issue might be.
Any help is appreciated. Thanks in advance!

Seems like it had something to do with linking an SSH key from my computer to my Github account. Followed this guide here, ran bundle install and now I shall party hard. https://help.github.com/articles/generating-ssh-keys#step-3-add-your-ssh-key-to-github

Related

I cannot upload my iOS project to github

Whenever I try to upload the project to github the following error is coming.
Permission denied (publickey).
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists.
Please somebody help me. I am new to to github. I cannot understand what is wrong
You are likely trying to connect to GitHub using SSH. Try this link if you want to use ssh. Instead the more preferred method is to push/pull over HTTPS. Try this instead git remote set-url origin https://github.com/User/UserRepo.git. Then if you push, git will ask for your email and password and most probably be successful. Using Https also solves the problem of push/pull behind firewalls
sounds like you haven't properly set up your SSH key for github. The GitHub Documentation should be a good place to start help you properly set up your SSH keys.

Cant check out 2gb repo

I am trying to clone a big repo from bitbucket.org but im facing the following error its near 2gb in size so it is when I try to clone the repo i get the following error message which I have not got before.
warning: templates not found C:\Program
Files\Git\share\git-core\templates
fatal: The remote end hung up unexpectedly
error: RPC failed; curl 52 Empty reply from server
Completed with errors, see above.
Does anybody no how to solve this I have not much expierence with the git command line just the sourcetree user interface any help is greatly apreciated, would I be better copying the files locally on pc and just push them to a new repo im wanting to simply clone the project for a new version of the product.
Regards and many thanks,
Treat others as to how you wish to treat others.
If this is the wrong stackexchange to post this please forgive me

failing when trying to push to my remote git repository

i'm new use of VSCode. I'm trying to push my commits to remote repo, i'm getting credentials prompt, but i getting following output:
remote: Anonymous access to myname/myrepo.git denied.
fatal: Authentication failed for 'https://github.com/myname/myrepo.git/'
git fetch
Please help
Thanks
There are many people having this problem. I know it has been reported for a couple of times here: https://code.visualstudio.com/Issues/List
It seems those tickets are not available on public. File a new bug. Hopefully they are going to fix it until the next release.
I just had a problem where I was receiving a similar error, and I found these articles resourceful to fix this issue.
Potential reasons for problem:
Windows Credentials doesn't have the right Github credentials
Adding Git credentials on Windows
Github deprecated password authentication and you now have to use Personal Access Token when pushing
https://techglimpse.com/git-push-github-token-based-passwordless/
Hope this is helpful to anyone else that comes across this post.

permission denied error when try to clone fb app in heroku to github

I am trying to make a fb app. I follow the tutorial in (https://devcenter.heroku.com/articles/facebook#working-locally," this") link. To grabbing a copy of my app’s source code using Git use the following camand in windows7 cmd.
git clone git#heroku.com:myappname.git -o heroku
But there is an error
permission denied
fatal :could not read from remote repository.
Please make sure you have the curect access rights and repository exists.
Hm, are you sure a ssh key was set up correctly when you installed toolbelt?
This question has more suggestions for solving that particular problem.

An internal Exception occurred during push: cannot store objects

Hello I am new to Git and trying to setup server part and client part.
On a Server side I have ssh access and Git version 1.5
On a Client side I have eclipse with eGit.
I created git repo on a server side via usual means: git init and added simple html file.
Using eGit I checkout the repo and everything seems to be going well. I made changes on a client side, committed it and decided to push back to the server.
Now I have all permissions set but still get following error:
I don't know how to fix it and error message doesn't provide much details.
Please help.
Thank you!
For me, on Windows eclipse, I had an error like this:
An internal Exception occurred during push: github.com/***/***/service=git-receive-pack not found
I just reconfigured the eclipse and added my github account information and store it. Then it worked. Team->Remove->Configure push to upstream->URI, Change->Add authentication details
Ok, I resolved my issue following way:
1) I changed configuration for remote fetch and pull from sftp to ssh
2) Once I did step 1. I got different error:
When I tried to push changes from Terminal I got following:
git push origin
Password:
bash: git-receive-pack: command not found
fatal: The remote end hung up unexpectedly
3) Found answer to the above error: git-upload-pack: command not found, how to fix this correctly
4) On my old server path to the git is: "/usr/local/git/bin" So I added it to .bashrc file.
Once I done that, everything started to work:
The possible issues are:
1. The source code might not be committed in the first place. Please try committing and see.
2. There is some issue with github authentication. Please re authenticate the credentials and try using: Team->Remove->Configure push to upstream->URI, Change->Add authentication