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
Related
I am trying to clone a repository, but I run into the error mentioned below.
https://github.com/Sefaria/Sefaria-Export/issues/20
I am using the Ubuntu terminal and receive the same error.
Unfortunately, the issue is not being addressed.
Can someone suggest a way to bypass the error (or even skip the faulty file altogether) so I can make a clone of the repo?
Thank you!
I have been trying to push my first project to github, but no success whatsoever. I have two errors:
When I specify the path of the folder (cd Desktop/folder), I get yhe message:no path found. The name is correct, so how can I overcome this? Also,I am not sure how critical this error is.
Following the steps in the github tutorial on the freecodecamp website, after push command I get the error: everything is up to date but,in fact, no changes are done to the repository and nothing is uploaded.
I appreciate clear answers because I am not too technical myself and this is my first project to upload.
Many thanks!
please find below link which will help you from the very beginning how all process done you will know through conceptually
https://product.hubspot.com/blog/git-and-github-tutorial-for-beginners
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
[SOLVED] Somehow, I managed to not have "write" permissions to the .git directory. So was trying to write the commit and getting bounced.
I've been using Eclipse for a few months, but had been just running git from the CLI. I decided that was inefficient and that I wanted to use eGit, so I started following this tutorial (http://www.slideshare.net/loianeg/using-the-egit-eclipse-plugin-with-git-hub-2578587?from=embed).
I'm trying to add an existing project, so I did Team-->Share Project-->Git and selected the .git corresponding to my project. Eclipse seems to have picked it up, okay, but when I try to commit, I get a popup saying
"Committing changes has encountered a problem' -- an internal error occured.
When I click details, it say "An internal error occurred
Exception caught during execution of commit command"
...I don't even know where to start on this one. I googled the error and didn't get anything useful.
Anyone know how to fix this, or at least how to start debugging?
I've solved my case removing index.lock file from the git folder of the project.
start debugging?
Check the "Errors" Eclipse view for a full Stack Trace associate with that error message
Example of an Error View:
fix it?
If the Exception is a NPE one (NullPointerException), like shown in bug 329611, then you can try a git commit -m "a message" in a shell, in order to get past that initial first commit with a GUI.
As the OP rogueleaderr mentions, the error view and the exact stack trace behind the exception was enough:
Somehow, I managed to not have "write" permissions to the .git directory.
So was trying to write the commit and getting bounced.
I face this problem too, Error tab doesn't show anything more.
So I use GitExtension to commit instead, problem solved.
Using parallel eGit and GitExtension to keep tracking a local git repo is a good idea. It's update runtime on both Eclipse and GitExtension when we make change on each.
I faced this problem. I delete the .git folder and .gitignore file push to upstream it works correctly.
I had this same issue. I resolved it by committing manually from terminal using (in this order):
git add . then git commit and lastly, git push from the local repo directory.
I faced similar problem, It was resolved after deleting index.lock file in .git\ folder.
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