Github Desktop. Remote end hung up unexpectedly
up vote
0
down vote
favorite
I am using github desktop and the website. no git code, and I created a repository for my unreal engine 4 c++ project. I then try to publish the repository to github but I get this error
I have seen many posts with this error but none that use github desktop, just git code and it is not what im using.
I use windows, and also I cannot clone unreal engine c++ repositories either that I created at the college PCs.
thats the best I can ask sorry if my question is vague
error when publishing repository:
`https://pastebin.com/Rzdfbrwp`
error when cloning a repository from github (repository made in college pc)
`https://pastebin.com/72S18rD5`
c++ github unreal-engine4 github-desktop
New contributor
add a comment |
up vote
0
down vote
favorite
I am using github desktop and the website. no git code, and I created a repository for my unreal engine 4 c++ project. I then try to publish the repository to github but I get this error
I have seen many posts with this error but none that use github desktop, just git code and it is not what im using.
I use windows, and also I cannot clone unreal engine c++ repositories either that I created at the college PCs.
thats the best I can ask sorry if my question is vague
error when publishing repository:
`https://pastebin.com/Rzdfbrwp`
error when cloning a repository from github (repository made in college pc)
`https://pastebin.com/72S18rD5`
c++ github unreal-engine4 github-desktop
New contributor
Have you tried it again afterwards?
– hellow
Nov 12 at 16:29
yeah I keep trying and it gets stuck at a certain percentage like 65%. then on my laptop it gets stuck at 23% everytime in both. so its gotta do with something im doing wrong. for pushing its different but i get the same error
– Frankie
Nov 12 at 16:36
Since you tagged this both C++ and Unreal Engine: does it work with other languages and non-UE projects?
– molbdnilo
Nov 12 at 16:41
I have a visual studio project and a unity c# project and they worked fine so thats why I was confused
– Frankie
Nov 12 at 17:04
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I am using github desktop and the website. no git code, and I created a repository for my unreal engine 4 c++ project. I then try to publish the repository to github but I get this error
I have seen many posts with this error but none that use github desktop, just git code and it is not what im using.
I use windows, and also I cannot clone unreal engine c++ repositories either that I created at the college PCs.
thats the best I can ask sorry if my question is vague
error when publishing repository:
`https://pastebin.com/Rzdfbrwp`
error when cloning a repository from github (repository made in college pc)
`https://pastebin.com/72S18rD5`
c++ github unreal-engine4 github-desktop
New contributor
I am using github desktop and the website. no git code, and I created a repository for my unreal engine 4 c++ project. I then try to publish the repository to github but I get this error
I have seen many posts with this error but none that use github desktop, just git code and it is not what im using.
I use windows, and also I cannot clone unreal engine c++ repositories either that I created at the college PCs.
thats the best I can ask sorry if my question is vague
error when publishing repository:
`https://pastebin.com/Rzdfbrwp`
error when cloning a repository from github (repository made in college pc)
`https://pastebin.com/72S18rD5`
c++ github unreal-engine4 github-desktop
c++ github unreal-engine4 github-desktop
New contributor
New contributor
edited Nov 12 at 19:29
New contributor
asked Nov 12 at 16:21
Frankie
11
11
New contributor
New contributor
Have you tried it again afterwards?
– hellow
Nov 12 at 16:29
yeah I keep trying and it gets stuck at a certain percentage like 65%. then on my laptop it gets stuck at 23% everytime in both. so its gotta do with something im doing wrong. for pushing its different but i get the same error
– Frankie
Nov 12 at 16:36
Since you tagged this both C++ and Unreal Engine: does it work with other languages and non-UE projects?
– molbdnilo
Nov 12 at 16:41
I have a visual studio project and a unity c# project and they worked fine so thats why I was confused
– Frankie
Nov 12 at 17:04
add a comment |
Have you tried it again afterwards?
– hellow
Nov 12 at 16:29
yeah I keep trying and it gets stuck at a certain percentage like 65%. then on my laptop it gets stuck at 23% everytime in both. so its gotta do with something im doing wrong. for pushing its different but i get the same error
– Frankie
Nov 12 at 16:36
Since you tagged this both C++ and Unreal Engine: does it work with other languages and non-UE projects?
– molbdnilo
Nov 12 at 16:41
I have a visual studio project and a unity c# project and they worked fine so thats why I was confused
– Frankie
Nov 12 at 17:04
Have you tried it again afterwards?
– hellow
Nov 12 at 16:29
Have you tried it again afterwards?
– hellow
Nov 12 at 16:29
yeah I keep trying and it gets stuck at a certain percentage like 65%. then on my laptop it gets stuck at 23% everytime in both. so its gotta do with something im doing wrong. for pushing its different but i get the same error
– Frankie
Nov 12 at 16:36
yeah I keep trying and it gets stuck at a certain percentage like 65%. then on my laptop it gets stuck at 23% everytime in both. so its gotta do with something im doing wrong. for pushing its different but i get the same error
– Frankie
Nov 12 at 16:36
Since you tagged this both C++ and Unreal Engine: does it work with other languages and non-UE projects?
– molbdnilo
Nov 12 at 16:41
Since you tagged this both C++ and Unreal Engine: does it work with other languages and non-UE projects?
– molbdnilo
Nov 12 at 16:41
I have a visual studio project and a unity c# project and they worked fine so thats why I was confused
– Frankie
Nov 12 at 17:04
I have a visual studio project and a unity c# project and they worked fine so thats why I was confused
– Frankie
Nov 12 at 17:04
add a comment |
1 Answer
1
active
oldest
votes
up vote
0
down vote
You need to clone the repository with ssh.
Run the following command and remove your repository:
git remote rm origin
Then, try the command below and push afterwards:
git remote add origin git@github.com:username/project.git
hello thanks for answering, where do I run this command? im new to github sorry
– Frankie
Nov 12 at 16:35
You should use Git Shell if you have Github Desktop installed, just press windows button and search for it
– isydmr
Nov 12 at 16:46
hello I have download git since i couldnt find the git shell. so I ran the commands in the order you said even remove the repository, but it just gave me another error like: the repository was archived. I think im doing it wrong.
– Frankie
Nov 12 at 17:41
Could you please share a screenshot taken from Github Desktop and error messages?
– isydmr
Nov 12 at 18:31
I have edited my post with 2 pastebin links so you can see the full errors on my github desktop. sorry for bothering you so much by the way, you are really helping me out here
– Frankie
Nov 12 at 19:30
|
show 2 more comments
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
0
down vote
You need to clone the repository with ssh.
Run the following command and remove your repository:
git remote rm origin
Then, try the command below and push afterwards:
git remote add origin git@github.com:username/project.git
hello thanks for answering, where do I run this command? im new to github sorry
– Frankie
Nov 12 at 16:35
You should use Git Shell if you have Github Desktop installed, just press windows button and search for it
– isydmr
Nov 12 at 16:46
hello I have download git since i couldnt find the git shell. so I ran the commands in the order you said even remove the repository, but it just gave me another error like: the repository was archived. I think im doing it wrong.
– Frankie
Nov 12 at 17:41
Could you please share a screenshot taken from Github Desktop and error messages?
– isydmr
Nov 12 at 18:31
I have edited my post with 2 pastebin links so you can see the full errors on my github desktop. sorry for bothering you so much by the way, you are really helping me out here
– Frankie
Nov 12 at 19:30
|
show 2 more comments
up vote
0
down vote
You need to clone the repository with ssh.
Run the following command and remove your repository:
git remote rm origin
Then, try the command below and push afterwards:
git remote add origin git@github.com:username/project.git
hello thanks for answering, where do I run this command? im new to github sorry
– Frankie
Nov 12 at 16:35
You should use Git Shell if you have Github Desktop installed, just press windows button and search for it
– isydmr
Nov 12 at 16:46
hello I have download git since i couldnt find the git shell. so I ran the commands in the order you said even remove the repository, but it just gave me another error like: the repository was archived. I think im doing it wrong.
– Frankie
Nov 12 at 17:41
Could you please share a screenshot taken from Github Desktop and error messages?
– isydmr
Nov 12 at 18:31
I have edited my post with 2 pastebin links so you can see the full errors on my github desktop. sorry for bothering you so much by the way, you are really helping me out here
– Frankie
Nov 12 at 19:30
|
show 2 more comments
up vote
0
down vote
up vote
0
down vote
You need to clone the repository with ssh.
Run the following command and remove your repository:
git remote rm origin
Then, try the command below and push afterwards:
git remote add origin git@github.com:username/project.git
You need to clone the repository with ssh.
Run the following command and remove your repository:
git remote rm origin
Then, try the command below and push afterwards:
git remote add origin git@github.com:username/project.git
answered Nov 12 at 16:32
isydmr
1017
1017
hello thanks for answering, where do I run this command? im new to github sorry
– Frankie
Nov 12 at 16:35
You should use Git Shell if you have Github Desktop installed, just press windows button and search for it
– isydmr
Nov 12 at 16:46
hello I have download git since i couldnt find the git shell. so I ran the commands in the order you said even remove the repository, but it just gave me another error like: the repository was archived. I think im doing it wrong.
– Frankie
Nov 12 at 17:41
Could you please share a screenshot taken from Github Desktop and error messages?
– isydmr
Nov 12 at 18:31
I have edited my post with 2 pastebin links so you can see the full errors on my github desktop. sorry for bothering you so much by the way, you are really helping me out here
– Frankie
Nov 12 at 19:30
|
show 2 more comments
hello thanks for answering, where do I run this command? im new to github sorry
– Frankie
Nov 12 at 16:35
You should use Git Shell if you have Github Desktop installed, just press windows button and search for it
– isydmr
Nov 12 at 16:46
hello I have download git since i couldnt find the git shell. so I ran the commands in the order you said even remove the repository, but it just gave me another error like: the repository was archived. I think im doing it wrong.
– Frankie
Nov 12 at 17:41
Could you please share a screenshot taken from Github Desktop and error messages?
– isydmr
Nov 12 at 18:31
I have edited my post with 2 pastebin links so you can see the full errors on my github desktop. sorry for bothering you so much by the way, you are really helping me out here
– Frankie
Nov 12 at 19:30
hello thanks for answering, where do I run this command? im new to github sorry
– Frankie
Nov 12 at 16:35
hello thanks for answering, where do I run this command? im new to github sorry
– Frankie
Nov 12 at 16:35
You should use Git Shell if you have Github Desktop installed, just press windows button and search for it
– isydmr
Nov 12 at 16:46
You should use Git Shell if you have Github Desktop installed, just press windows button and search for it
– isydmr
Nov 12 at 16:46
hello I have download git since i couldnt find the git shell. so I ran the commands in the order you said even remove the repository, but it just gave me another error like: the repository was archived. I think im doing it wrong.
– Frankie
Nov 12 at 17:41
hello I have download git since i couldnt find the git shell. so I ran the commands in the order you said even remove the repository, but it just gave me another error like: the repository was archived. I think im doing it wrong.
– Frankie
Nov 12 at 17:41
Could you please share a screenshot taken from Github Desktop and error messages?
– isydmr
Nov 12 at 18:31
Could you please share a screenshot taken from Github Desktop and error messages?
– isydmr
Nov 12 at 18:31
I have edited my post with 2 pastebin links so you can see the full errors on my github desktop. sorry for bothering you so much by the way, you are really helping me out here
– Frankie
Nov 12 at 19:30
I have edited my post with 2 pastebin links so you can see the full errors on my github desktop. sorry for bothering you so much by the way, you are really helping me out here
– Frankie
Nov 12 at 19:30
|
show 2 more comments
Frankie is a new contributor. Be nice, and check out our Code of Conduct.
Frankie is a new contributor. Be nice, and check out our Code of Conduct.
Frankie is a new contributor. Be nice, and check out our Code of Conduct.
Frankie is a new contributor. Be nice, and check out our Code of Conduct.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53266197%2fgithub-desktop-remote-end-hung-up-unexpectedly%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Have you tried it again afterwards?
– hellow
Nov 12 at 16:29
yeah I keep trying and it gets stuck at a certain percentage like 65%. then on my laptop it gets stuck at 23% everytime in both. so its gotta do with something im doing wrong. for pushing its different but i get the same error
– Frankie
Nov 12 at 16:36
Since you tagged this both C++ and Unreal Engine: does it work with other languages and non-UE projects?
– molbdnilo
Nov 12 at 16:41
I have a visual studio project and a unity c# project and they worked fine so thats why I was confused
– Frankie
Nov 12 at 17:04