I am on branch fsp .I have used Following commands:
git pull origin master
git add .
git commit -m "message"
and then
abc#abc689:~/Workspace2/M-Egal(fsp)$ git push origin fsp
Counting objects: 103, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (87/87), done.
Writing objects: 100% (103/103), 20.31 KiB | 0 bytes/s, done.
Total 103 (delta 34), reused 0 (delta 0)
After this it is not responding. It is stuck at this point can anyone help ?
I have ssh connection with account and have used these steps several time before also.
The issue has been resolved after I switched the Internet connection from local cafe's Wi-Fi to mobile data
Related
I've been using git to deploy a PHP Azure WebApp from Visual Studio.
Suddenly, when I try to push, I get the following error:
Ivans-MacBook-Pro-4:myapp ivan$ git push azure master
Enumerating objects: 13, done.
Counting objects: 100% (13/13), done.
Delta compression using up to 8 threads.
Compressing objects: 100% (6/6), done.
Writing objects: 100% (7/7), 537 bytes | 537.00 KiB/s, done.
Total 7 (delta 4), reused 0 (delta 0)
remote: hooks/post-receive: 4: hooks/post-receive: /opt/Kudu/KuduConsole/kudu.dll: not found
To https://ivandemoapp.scm.azurewebsites.net/ivandemoapp.git
76c077f..ed6bddd master -> master
I haven't found any valid suggestions in other questions.
What can I do?
Visit your kudu website, https://ivandemoapp.scm.azurewebsites.net/newui .
Use rm to delete everything inside /home folder. Then try to redeploy your web app.
can anyone help me please ? I can't push due to :
C:\projects\MadmaqsSF>git push origin dev
Enumerating objects: 2125, done.
Counting objects: 100% (2125/2125), done.
Delta compression using up to 8 threads
Compressing objects: 100% (1473/1473), done.
Writing objects: 100% (2124/2124), 127.61 MiB | 233.35 MiB/s, done.
Total 2124 (delta 539), reused 2047 (delta 494)
remote: error: inflate: data stream error (invalid stored block lengths)
remote: fatal: pack has bad object at offset 43619424: inflate returned -3
error: remote unpack failed: index-pack abnormal exit
To http://midex/moud/MadmaqsSF.git
! [remote rejected] dev -> dev (unpacker error)
error: failed to push some refs to 'http://midex/moud/MadmaqsSF.git'
I think it's about long file name..
I tried:
git push -f origin dev
Its not a permission issue
Finally i just created a new repository and pushed my work on it. I think the old repo was corrupted.
I have a repository on GitHub. I tried to to connect to this repository from my laptop with Debian. I want to connect from one of my linux accounts: php-ocsclient. But I did not succeed.
The strange thing is that the error message said that there was no access to /home/gameboy/.config/git/attributes. Why does it need the access to another account?
I purged git completelly from my laptop an reinstall but this strange thing remained.
php-ocsclient#localhost:~/public_html$ git clone https://github.com/trzczy/php-ocsclient.git
Cloning into 'php-ocsclient'...
remote: Counting objects: 47, done.
remote: Total 47 (delta 0), reused 0 (delta 0), pack-reused 47
Unpacking objects: 100% (47/47), done.
Checking connectivity... done.
warning: unable to access '/home/gameboy/.config/git/attributes': Brak dostępu
php-ocsclient#localhost:~/public_html$
How to fix it?
I am trying to push my EAR into GIT repo on Blue mix Dev Ops.
I tried force push as well. Git push fails with below error
Counting objects: 4, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (4/4), done.
Writing objects: 100% (4/4), 17.35 MiB | 48.00 KiB/s, done.
Total 4 (delta 1), reused 0 (delta 0)
error: unpack failed: error Object too large (108,624,080 bytes), rejecting the pack. Max object size limit is 104,857,600 bytes.
To https://hub.jazz.net/git/poem/InspectionsPOEM
! [remote rejected] master -> master (n/a (unpacker error))
error: failed to push some refs to 'https://hub.jazz.net/git/poem/InspectionsPOEM'
Please let me know how to set the max limit, size for the file in GIT and who has the access to do it
Thanks
Mathangi
I try to redirect both the standard output and error of a simple Linux command as below :
git clone https://git.oschina.net/luzhao/helloworld.git &> log
after it finish I look into the log file :
cat log
Cloning into 'helloworld'...
absolutely , the log is not completed , some output was missed somehow . The completed log should be like this :
git clone https://git.oschina.net/luzhao/helloworld.git
Cloning into 'helloworld'...
remote: Counting objects: 18, done.
remote: Compressing objects: 100% (7/7), done.
remote: Total 18 (delta 0), reused 0 (delta 0)
Unpacking objects: 100% (18/18), done.
Checking connectivity... done.
anyone can help ? why some output were missed ? I am using Ubuntu14.04 with bash
This is a weirdness of git, the output changes when it's not being sent to a terminal. Pass the --progress option to git.