push Questions

4

Solved

I've seen lots of posts/answers on how to display all of the local commits for all local branches that have not been commited. I have a narrow use case, and have not found an answer. I need to dete...
Humanitarianism asked 8/3, 2021 at 23:46

3

Solved

git push -u origin main error: RPC failed; HTTP 400 curl 22 The requested URL returned error: 400 send-pack: unexpected disconnect while reading sideband packet fatal: the remote end hung up unex...
Kilmarx asked 14/1 at 18:48

4

Solved

I've been wondering how to do "true" (semi) real-time data streaming with PHP. Possible applications: chat rooms, auctions, games, etc. By "true", I mean the data is not just written somewhere an...
Clearheaded asked 21/12, 2010 at 2:11

4

I'm in the master branch and have added the remote branch, after which I'm unable to push the data from local to remote.: $ Git remote add master https://....git $ Git push origin master https://...
Predicable asked 26/10, 2019 at 7:57

2

After getting changes from a different branch using rebase, I'm trying to push the new changes to a remote private branch and I'm getting the following message Push of the current branch XXXX was ...
Garry asked 23/4, 2017 at 13:37

2

Solved

I'm doing this: git checkout master git pull git checkout feature git rebase origin/master then resolve all the problems... Try to push - not gonna happen... Git is telling me that after doing a r...
Suisse asked 14/5, 2019 at 7:46

3

I'm new to Git, so please forgive me if this is a stupid question. On my initial push to GitHub, using git push origin master I'm getting the following error(s): Counting objects: 1499, done. De...
Dig asked 10/3, 2016 at 9:2

10

I'm trying to push for the first time a code to my git repository but i get the following error: Counting objects: 222026, done. Compressing objects: 100% (208850/208850), done. Write failed: B...
Deitz asked 1/10, 2013 at 15:24

6

Solved

I implemented the oauth2 web flow in order to get access_token from users of my app. With the access_token, I would like to do the following actions: Get user informations Create a repo for thi...
Frap asked 6/2, 2017 at 18:6

50

error: RPC failed; curl 92 HTTP/2 stream 0 was not closed cleanly: PROTOCOL_ERROR (err 1) I tried 'push' while writing 'git'. However, the following message does not solve the problem.
Bagatelle asked 11/12, 2019 at 9:25

21

Solved

I have made a git commit and subsequent push. I would like to change the commit message. If I understand correctly, this is not advisable because someone might have pulled from the remote repositor...
Antispasmodic asked 24/1, 2012 at 1:58

3

Solved

I set up 2 Factor Authentication on GitHub a while back. So, once I was working in the command line and wanted to push to my repo. I entered my username and password but it failed by giving an erro...
Ordinary asked 1/4, 2019 at 5:12

8

I created a Github action that prints out some strings with the statement. The action triggers when I make commits on github.com, but does not trigger when I make commits locally and push them to t...
Emelia asked 10/12, 2019 at 22:44

5

I try to push my project and it shows me this in the terminal (I use MacOS): fatal: unable to connect to github.com: github.com[0: 140.82.121.3]: errno=Operation timed out I tried to clone a projec...
Cleopatracleopatre asked 8/7, 2022 at 18:46

10

Solved

I'm still going through some guides on RoR and I'm stuck here at Deploying The Demo App I followed instructions: With the completion of the Microposts resource, now is a good time to push the ...
Mangosteen asked 5/4, 2012 at 17:11

8

Solved

today I've moved my private github repository to newly created organization (of which I'm an owner). I've changed my remote origin to [email protected]:organization/repo.git. I'm not able to p...
Livingstone asked 22/10, 2018 at 19:38

5

The full error is: remote: error: cannot lock ref 'refs/heads/fix/add_overlay': reference already exists I'm using SourceTree, but that should not matter I don't think. I keep trying to push an...
Towards asked 7/12, 2017 at 21:1

10

I am trying to push an image to a local registry running in minikube but get the below error: Successfully built ee84225eb459 Successfully tagged user/apiserver:0.0.1 $ docker push localhost:5000...
Delgadillo asked 31/12, 2017 at 0:16

4

Solved

I'm working on a push architecture that needs to support applications which allow for multiple users. This means more than one user can log into the application with their credentials. The problem ...

17

Solved

I am fairly new to git, yet currently using it to manage our code in a team environment. I had some rebasing issues, and I fixed them using: git checkout --ours filename.txt git add filename.txt gi...
Febrifuge asked 9/12, 2013 at 9:26

5

Solved

I tried to push some changes to GitHub using git push origin master, but after some time it showed an error: fatal: unable to access 'https://github.com/the-unbelievable/MiniGames.git/': Failed to...
Kenweigh asked 29/3, 2015 at 18:45

27

Solved

I'm trying to push my project (all files in a new repository). I follow the steps but when I push with git push -u origin master I get this error: ! [rejected] master -> master (non-fast-forwar...
Twiggy asked 27/7, 2012 at 22:9

7

Solved

After doing a checkout of the remote branch releases/rel_5.4.1 using the Git GUI, I'm seeing this unexpected error message when I try to push: fatal: The upstream branch of your current branch doe...
Monopolize asked 21/7, 2014 at 12:5

5

Solved

Why does a return of the push method cause Uncaught TypeError: acc.push is not a function But a return concat results in the correct solution? [1, 2, 3, 4].reduce(function name(acc, curr) { ...
Evangelin asked 15/6, 2017 at 15:58

3

Solved

We are having an issue in our team and we have decided to check if there is a way or git command to reject git push where there are TODOs in the code. Any ideas? Thanks in advance.
Falange asked 14/12, 2012 at 11:8

© 2022 - 2024 — McMap. All rights reserved.