[git-users] Git Error - repository has been unaccessible for 4 days

2015-11-16 Thread David Bastedo



Is there an actual way to contact google - my git repository has been down 
for days and nobody at google seems to be able to help...

-- 
You received this message because you are subscribed to the Google Groups "Git 
for human beings" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to git-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [git-users] Git Error - repository has been unaccessible for 4 days

2015-11-16 Thread Gergely Polonkai
Hello,

it is impossible to guess what software you made this screenshot of, but
even if I could, I would redirect you to that product's support. This
mailing list is for Git users, not for specific Git based sites like Github
of Bitbucket.

Best,
Gergely
On Nov 16, 2015 7:26 PM, "David Bastedo"  wrote:

>
> 
> Is there an actual way to contact google - my git repository has been down
> for days and nobody at google seems to be able to help...
>
> --
> You received this message because you are subscribed to the Google Groups
> "Git for human beings" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to git-users+unsubscr...@googlegroups.com.
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups "Git 
for human beings" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to git-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [git-users] git error 504

2014-05-19 Thread Konstantin Khomoutov
On Sun, 18 May 2014 20:21:41 -0700 (PDT)
Q Fadlan q.fadla...@gmail.com wrote:

 when i will use my git in my PC, my git client error 504. whereas
 when i use git client in other PC, git running well. i think the
 problem in my PC. i have uninstall git client n install again, but my
 git still error 504. does anyone know the solution? 

Since this error looks like a HTTP status code, you're probably using
HTTP[S] to acces your repository, and HTTP status code 504 means
Gateway timeout.  Most of the time this error means that your request
is being proxied by a HTTP proxy server, and it times out for some
reason.  So my guess is that the difference between your computers is
in the network setup regarding the functioning of the HTTP protocol.
So your best bet is to go and compare the network settings in Internet
Explorers on both machines.  You might also fire up a console prompt
and run

  proxycfg

there -- it should print HTTP proxy settings for the current user.

-- 
You received this message because you are subscribed to the Google Groups Git 
for human beings group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to git-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[git-users] git error 504

2014-05-18 Thread Q Fadlan
Hi everyone,

when i will use my git in my PC, my git client error 504. whereas when i 
use git client in other PC, git running well. i think the problem in my PC. 
i have uninstall git client n install again, but my git still error 504. 
does anyone know the solution? 

-- 
You received this message because you are subscribed to the Google Groups Git 
for human beings group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to git-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [git-users] Git error on push : refusing to update checked out branch

2014-05-06 Thread Benjamin Fontaine


 Thanks for your replies, obviously I'm a beginner coming from svn
 and I've haven't found short  efficient tutorial at this time ( in my 
 opinion, my free time being very rare )

 Things I've gotta do today :

 1) git init -bare in /home/git
 2) Add /home/www files *.php does not seem to include recursive one ( 
 btw these are remote files, will this work ? )
 3) Clone on my localhost, checkout, commit, push
 4) How to Post-commit like svn ? Making each push on bare repo pushing 
 files onto real destination 


-- 
You received this message because you are subscribed to the Google Groups Git 
for human beings group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to git-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [git-users] Git error on push : refusing to update checked out branch

2014-05-06 Thread Benjamin Fontaine
Thanks for your replies, obviously I'm a beginner coming from svn
and I've haven't found short  efficient tutorial at this time ( in my 
opinion, my free time being very rare )

Things I've gotta do today :

1) git init -bare in /home/git
2) Add /home/www files *.php does not seem to include recursive one ( btw 
these are remote files, will this work ? )
3) Clone on my localhost, checkout, commit, push
4) Home to Post-commit like svn ? Making each push on bare repo pushing 
files onto real destination ?

-- 
You received this message because you are subscribed to the Google Groups Git 
for human beings group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to git-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [git-users] Git error on push : refusing to update checked out branch

2014-05-06 Thread Benjamin Fontaine
Found out with searches the command work from localhost to server 

 git push --set-upstream origin master

gets stuck on total : 1815 (delta) etc .. 

+ post-update hook and guess yeah, it works, thanks !

-- 
You received this message because you are subscribed to the Google Groups Git 
for human beings group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to git-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [git-users] Git error on push : refusing to update checked out branch

2014-05-06 Thread Benjamin Fontaine


 Found out with searches the command work from localhost to server 

 git push --set-upstream origin master

 + post-update hook and guess yeah, it works, thanks !


Finally, I just wanted ( since the start ) to get these commands  
post-update hook location to get it working

-- 
You received this message because you are subscribed to the Google Groups Git 
for human beings group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to git-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[git-users] Git error on push : refusing to update checked out branch

2014-05-04 Thread Benjamin Fontaine


Hello and thanks for this group
I'm new to Git ( I was asked to learn it in my last job interviews, and 
I've configured it this far .. )
Master on my webserver, did a clone, put both to branch ben,  did commit, 
and then the push fails

http://i.snag.gy/0cyzW.jpg

Any ideas ? 
Thank in advance for further comments

-- 
You received this message because you are subscribed to the Google Groups Git 
for human beings group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to git-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [git-users] Git error on push : refusing to update checked out branch

2014-05-04 Thread Gergely Polonkai
Hello,

you are using a non-bare repository on the remote side. Such repositories
always have a branch checked out (read: the contents of its commits are
written to actual files on the disk). On the other side, bare repositories
are just that: bare. This means that they store all commits, but not in
actual files, but in git objects.

When you push your changes to a remote bare repository, your commits are
simply copied over to the other machine (OK, there are several other things
happening, but let’s see only the basic picture now).

When the remote is not bare with the branch master checked out, and you
push your branch ben, the story is just the same as with bare repositories.
However, if you are pushing ben while that branch is checked out (read: its
contents exist as actual files), those files would be overwritten, which is
not recommended (thus, refused by git).

If you don’t need the files on the remote site, just want to store your
commits at another place, you should remove your remote directory (after
saving your work to your local copy, if any!), and recreate it with git
init --bare. If, however, you do need those files, you should either use an
intermediate bare repository, where you can push from your local, and pull
from there on your current remote), or have a somewhat complicated workflow
involving branch-creation/deletion before every push.

Also, if you are really new to git, you should read some getting started
docs, like [1].

Best,
Gergely

PS: Using Linux as root is a bad idea ;)

[1] http://git-scm.com/book/en/Getting-Started


On 4 May 2014 22:51, Benjamin Fontaine bmx...@gmail.com wrote:

 Hello and thanks for this group
 I'm new to Git ( I was asked to learn it in my last job interviews, and
 I've configured it this far .. )
 Master on my webserver, did a clone, put both to branch ben,  did
 commit, and then the push fails

 http://i.snag.gy/0cyzW.jpg

 Any ideas ?
 Thank in advance for further comments

 --
 You received this message because you are subscribed to the Google Groups
 Git for human beings group.
 To unsubscribe from this group and stop receiving emails from it, send an
 email to git-users+unsubscr...@googlegroups.com.
 For more options, visit https://groups.google.com/d/optout.


-- 
You received this message because you are subscribed to the Google Groups Git 
for human beings group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to git-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[git-users] git error when trying to push one commit

2013-07-10 Thread Richard Marais


I am trying to push just one commit to origin master. However I get an 
error saying I first need to fetch then merge, but I get this error after a 
pull. Any ideas would be appreciated.

Richard@RICHARD-PC /e/Work/MH (master)
$ git pull
remote: Counting objects: 27, done.
remote: Compressing objects: 100% (11/11), done.
remote: Total 14 (delta 8), reused 0 (delta 0)
Unpacking objects: 100% (14/14), done.
From file:///V:\
   930430f..3a55dca  master - origin/master
Auto-merging 
buyit/src/main/java/com/company/buyit/outgoing/HttpsCallService.java
Merge made by the 'recursive' strategy.
 .../java/com/company/buyit/auth/BcagHmacGenerator.java  |  2 +-
 .../com/company/buyit/outgoing/HttpsCallService.java| 16 ++--
 deployLocal.sh   |  2 +-
 3 files changed, 4 insertions(+), 16 deletions(-)

Richard@RICHARD-PC /e/Work/MH (master)
$ git push origin 72ba712:master
To file:///V:\
 ! [rejected]72ba712 - master (non-fast-forward)
error: failed to push some refs to 'file:///V:\'
hint: Updates were rejected because the tip of your current branch is behind
hint: its remote counterpart. Merge the remote changes (e.g. 'git pull')
hint: before pushing again.
hint: See the 'Note about fast-forwards' in 'git push --help' for details.

Here is the list of commits, not the position of 72ba712:

Richard@RICHARD-PC /e/Work/MH (master)
$ git lol
*   eec2ab2 (HEAD, master) Merge branch 'master' of file:///V:\
|\
| * 3a55dca (origin/master) comments
* | 72ba712 comments
* | bc55eb5 comments
* |   c2aa448 Merge branch 'master' of file:///V:\
|\ \
| |/
| * 930430f comments
* | fc7a55b comments
* | fd401a5 comments

-- 
You received this message because you are subscribed to the Google Groups Git 
for human beings group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to git-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




Re: [git-users] git error when trying to push one commit

2013-07-10 Thread William Seiti Mizuta
Hi Richard,

what is the return of the command git remote show origin?


William Seiti Mizuta
@williammizuta
Caelum | Ensino e Inovação
www.caelum.com.br


On Wed, Jul 10, 2013 at 4:07 PM, Richard Marais richardmar...@gmail.comwrote:

 I am trying to push just one commit to origin master. However I get an
 error saying I first need to fetch then merge, but I get this error after a
 pull. Any ideas would be appreciated.

 Richard@RICHARD-PC /e/Work/MH (master)
 $ git pull
 remote: Counting objects: 27, done.
 remote: Compressing objects: 100% (11/11), done.
 remote: Total 14 (delta 8), reused 0 (delta 0)
 Unpacking objects: 100% (14/14), done.
 From file:///V:\
930430f..3a55dca  master - origin/master
 Auto-merging 
 buyit/src/main/java/com/company/buyit/outgoing/HttpsCallService.java
 Merge made by the 'recursive' strategy.
  .../java/com/company/buyit/auth/BcagHmacGenerator.java  |  2 +-
  .../com/company/buyit/outgoing/HttpsCallService.java| 16 ++--
  deployLocal.sh   |  2 +-
  3 files changed, 4 insertions(+), 16 deletions(-)

 Richard@RICHARD-PC /e/Work/MH (master)
 $ git push origin 72ba712:master
 To file:///V:\
  ! [rejected]72ba712 - master (non-fast-forward)
 error: failed to push some refs to 'file:///V:\'
 hint: Updates were rejected because the tip of your current branch is behind
 hint: its remote counterpart. Merge the remote changes (e.g. 'git pull')
 hint: before pushing again.
 hint: See the 'Note about fast-forwards' in 'git push --help' for details.

 Here is the list of commits, not the position of 72ba712:

 Richard@RICHARD-PC /e/Work/MH (master)
 $ git lol
 *   eec2ab2 (HEAD, master) Merge branch 'master' of file:///V:\
 |\
 | * 3a55dca (origin/master) comments
 * | 72ba712 comments
 * | bc55eb5 comments
 * |   c2aa448 Merge branch 'master' of file:///V:\
 |\ \
 | |/
 | * 930430f comments
 * | fc7a55b comments
 * | fd401a5 comments

  --
 You received this message because you are subscribed to the Google Groups
 Git for human beings group.
 To unsubscribe from this group and stop receiving emails from it, send an
 email to git-users+unsubscr...@googlegroups.com.
 For more options, visit https://groups.google.com/groups/opt_out.




-- 
You received this message because you are subscribed to the Google Groups Git 
for human beings group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to git-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




Re: [git-users] git error when trying to push one commit

2013-07-10 Thread PJ Weisberg
On Jul 10, 2013 12:07 PM, Richard Marais richardmar...@gmail.com wrote:
...

 Here is the list of commits, not the position of 72ba712:

I've noted it.  It's not a descendant of origin/master.  Pushing it as
origin/master would effectively discard 3a55dca.

I believe what you want to do is cherry-pick 72ba712 onto a new branch
based on the latest origin/master, then push that back to origin/master.

 Richard@RICHARD-PC /e/Work/MH (master)
 $ git lol
 *   eec2ab2 (HEAD, master) Merge branch 'master' of file:///V:\
 |\
 | * 3a55dca (origin/master) comments
 * | 72ba712 comments
 * | bc55eb5 comments
 * |   c2aa448 Merge branch 'master' of file:///V:\
 |\ \
 | |/
 | * 930430f comments
 * | fc7a55b comments
 * | fd401a5 comments

-- 
You received this message because you are subscribed to the Google Groups Git 
for human beings group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to git-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




Re: [git-users] Git error

2013-06-17 Thread John McKown
The problem is basically what is said at the end of the error message: 
Filename too long. The relative path looks to me to be 263 characters
long. Many systems restrict the length to 255 characters. My Fedora system
looks to define it to be 256 characters. How to fix? Well, as best as I can
find: shorten the subdirectory names. I don't know if you can do this or
not. If not, then I have no ideas.

On Mon, Jun 17, 2013 at 8:18 AM, justin p denzilac...@gmail.com wrote:

 Hi,


 1.Iam getting error attached when cloning of repository is done:







 2.Also, when file is tried to be added,it gives error below:



 $ git add *

 fatal: unable to stat
 'src/development_architecture/integration_application_proj


 ect_template/provider_archetype/provider_archetype/src/main/resources/archetype-


 resources/__rootArtifactId__-data/src/main/java/com/accenture/afpj/sample/skelet

 on/visitor/data/VisitorRepositoryJpaImpl.java': Filename too long



 Request help to resolve same *asap* as it is affecting the project.
 THanks
 justin

 --
 You received this message because you are subscribed to the Google Groups
 Git for human beings group.
 To unsubscribe from this group and stop receiving emails from it, send an
 email to git-users+unsubscr...@googlegroups.com.
 For more options, visit https://groups.google.com/groups/opt_out.






-- 
This is a test of the Emergency Broadcast System. If this had been an
actual emergency, do you really think we'd stick around to tell you?

Maranatha! 
John McKown

-- 
You received this message because you are subscribed to the Google Groups Git 
for human beings group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to git-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




Re: [git-users] Git error

2013-06-17 Thread Konstantin Khomoutov
On Mon, 17 Jun 2013 06:18:49 -0700 (PDT)
justin p denzilac...@gmail.com wrote:

[...]

An x-posted copy of this message is answered on the main Git list:
http://news.gmane.org/find-root.php?group=gmane.comp.version-control.gitarticle=228065

-- 
You received this message because you are subscribed to the Google Groups Git 
for human beings group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to git-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




Re: [git-users] Git error

2013-06-17 Thread Thomas Ferris Nicolaisen
On Monday, June 17, 2013 3:41:13 PM UTC+2, John McKown wrote:

 The problem is basically what is said at the end of the error message:  
 Filename too long. The relative path looks to me to be 263 characters 
 long. Many systems restrict the length to 255 characters. My Fedora system 
 looks to define it to be 256 characters. How to fix? Well, as best as I can 
 find: shorten the subdirectory names. I don't know if you can do this or 
 not. If not, then I have no ideas. 


What also helps is to keep your files closer to the file system root. Do 
the clone in c:\src\ or something. Not sure if that 263 char path is the 
absolute path, or the path inside the repo (in which case you seriously 
need to restructure it a bit).

-- 
You received this message because you are subscribed to the Google Groups Git 
for human beings group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to git-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




Re: [git-users] git error

2012-09-12 Thread Martin Møller Skarbiniks Pedersen
On 11 September 2012 17:38, Saravanan P saravana...@shriramits.com wrote:
 fatal: Unable to find remote helper for 'https'

Do you have curl installed ?

Regards
Martin

-- 
You received this message because you are subscribed to the Google Groups Git 
for human beings group.
To post to this group, send email to git-users@googlegroups.com.
To unsubscribe from this group, send email to 
git-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/git-users?hl=en.