pushing to remote repo using github cli and it's stuck at push (refer to the screenshot below) - github

I am trying to push my changes using Github CLI and it's not working - basically stuck at the push command.
I tried closing github and restarting but its still stuck at this. I haven't tried pushing it from terminal.

Related

Losing changs during github stages, commit and push to the repository

Iam using git and github with vscode,
I stashed changes , committed them and pushed them into my repository, using push to.
All the steps had done without any git command in terminal,
My problem is all my changs have not showing on the repository and my new changs had deleted from vscode.
Why this happening?
can i restore my changs into vscode?
I make the same steps everytime and i never faced this problem,
Could any one explain what happened and helps me.
Thanks in advance.

How to start using A remote Github Repository with Git bash

I am new learning Github.I made a repository on Github online,but there is not any local repository for that folder.Now when i am creating a new file in my local i want that to be pushed in my that remote repository.How can I connect that?
I started git bash on my local and tried to add that remote repo link,it didnt show any error..but when i tried to push a file there it showed me error.

Upload to Heroku from GitHub other ways

As the GitHub linking is no longer working due to security issues, my app is still on GitHub and I want to put it on Heroku how do I do this easily?
As the security notification says, you can still deploy via git push.
Assuming you have a local copy of your repository¹ and you would normally do something like git push origin main to deploy to GitHub:
cd to your project directory
Check your remotes:
git remote -v
Do you see a Heroku remote?
If so, make note of its name and go to the next step.
Otherwise, add one:
heroku git:remote -a YOUR_APP_NAME
Now, push directly to the Heroku remote. Assuming it is called heroku:
git push heroku main
You'll probably also want to push to GitHub to ensure the code for your latest release is synced.
I believe this is the simplest option if you're migrating from GitHub integration, but the documentation also lists other options:
Docker-based deployments
Using dpl
Via Git hook
Via Terraform
¹If, for whatever reason, you don't have a local copy of your repository, git clone it from GitHub and then proceed as above.

Successfull pushing to the Github but not changing

I pushed to my GitHub from a usual repository, but it`s not working and there is no change and commit on my repo page on GitHub!
Also, I tried to clone it first and try to push it again, unfortunately, there is no change on its GitHub page!
Last night this repo was working correctly and I`m sure everything is OK in this repo!
Seems github server is not accessible right now. https://status.github.com/messages

How to upload my code changes to GERRIT for code review

My question is quite a basic one, but couldnt find any appropriate answer after searching a lot on net i.e
How do i push my code into Gerrit for the first time and hence forth
I have a git repository at this
I have cloned it in my local systesm D:/code drive. i have also mapped my github repo to this
Now when i make changes in my local machine and push the code via Github desktop, I could see the changes reflected in GIT HUB repository but not in GERRIT.
What am i missing ?