Skip to main content
replaced http://stackoverflow.com/ with https://stackoverflow.com/
Source Link
URL Rewriter Bot
URL Rewriter Bot

It looks like you are trying to push using "smart http(s) protocol", which GitHub now supports.
Let's suppose here you have no proxy issue, or firewall problem.

What is your remote upstream repo address?
(what git remote -v show lists?)

I would recommend:

  • making sure using an address like: https://gitbug/username/repo.git
  • having a ~/.netrc file with
 machine github.com login your_github_login password your_github_password 
  • try cloning again your repo git clone https://github.com/your_github_login/gitrepo.git, and push through that instance.

Note: as Noufal IbrahimNoufal Ibrahim comments, you could use ssh (unless ssh port is blocked, leaving you only with http/https connections)

git clone ssh://user@server:project.git 

It looks like you are trying to push using "smart http(s) protocol", which GitHub now supports.
Let's suppose here you have no proxy issue, or firewall problem.

What is your remote upstream repo address?
(what git remote -v show lists?)

I would recommend:

  • making sure using an address like: https://gitbug/username/repo.git
  • having a ~/.netrc file with
 machine github.com login your_github_login password your_github_password 
  • try cloning again your repo git clone https://github.com/your_github_login/gitrepo.git, and push through that instance.

Note: as Noufal Ibrahim comments, you could use ssh (unless ssh port is blocked, leaving you only with http/https connections)

git clone ssh://user@server:project.git 

It looks like you are trying to push using "smart http(s) protocol", which GitHub now supports.
Let's suppose here you have no proxy issue, or firewall problem.

What is your remote upstream repo address?
(what git remote -v show lists?)

I would recommend:

  • making sure using an address like: https://gitbug/username/repo.git
  • having a ~/.netrc file with
 machine github.com login your_github_login password your_github_password 
  • try cloning again your repo git clone https://github.com/your_github_login/gitrepo.git, and push through that instance.

Note: as Noufal Ibrahim comments, you could use ssh (unless ssh port is blocked, leaving you only with http/https connections)

git clone ssh://user@server:project.git 
fixed typo
Source Link
Cascabel
  • 501.7k
  • 75
  • 385
  • 319

It looks like you are trying to push using "smart http(s) protocol", which GitHub now supports.
Let's supposhere esuppose here you have no proxy issue, or firewall problem.

What is your remote upstream repo address?
(what git remote -v show lists?)

I would recommend:

  • making sure using an address like: https://gitbug/username/repo.git
  • having a ~/.netrc file with
 machine github.com login your_github_login password your_github_password 
  • try cloning again your repo git clone https://github.com/your_github_login/gitrepo.git, and push through that instance.

Note: as Noufal Ibrahim comments, you could use ssh (unless ssh port is blocked, leaving you only with http/https connections)

git clone ssh://user@server:project.git 

It looks like you are trying to push using "smart http(s) protocol", which GitHub now supports.
Let's supposhere e you have no proxy issue, or firewall problem.

What is your remote upstream repo address?
(what git remote -v show lists?)

I would recommend:

  • making sure using an address like: https://gitbug/username/repo.git
  • having a ~/.netrc file with
 machine github.com login your_github_login password your_github_password 
  • try cloning again your repo git clone https://github.com/your_github_login/gitrepo.git, and push through that instance.

Note: as Noufal Ibrahim comments, you could use ssh (unless ssh port is blocked, leaving you only with http/https connections)

git clone ssh://user@server:project.git 

It looks like you are trying to push using "smart http(s) protocol", which GitHub now supports.
Let's suppose here you have no proxy issue, or firewall problem.

What is your remote upstream repo address?
(what git remote -v show lists?)

I would recommend:

  • making sure using an address like: https://gitbug/username/repo.git
  • having a ~/.netrc file with
 machine github.com login your_github_login password your_github_password 
  • try cloning again your repo git clone https://github.com/your_github_login/gitrepo.git, and push through that instance.

Note: as Noufal Ibrahim comments, you could use ssh (unless ssh port is blocked, leaving you only with http/https connections)

git clone ssh://user@server:project.git 
add ssh possibility
Source Link
VonC
  • 1.4m
  • 569
  • 4.8k
  • 5.7k

It looks like you are trying to push using "[smart http(s) protocol][1]""smart http(s) protocol", which [GitHub now supports][2]GitHub now supports.
Let's supposhere e you have no proxy issue, or firewall problem.

What is your remote upstream repo address?
(what git remote -v show lists?)

I would recommend:

  • making sure using an address like: https://gitbug/username/repo.git
  • having a ~/.netrc file with
 machine github.com login your_github_login password your_github_password 

Note: as Noufal Ibrahim comments, you could use ssh (unless ssh port is blocked, leaving you only with http/https connections)

git clone ssh://user@server:project.git 

It looks like you are trying to push using "[smart http(s) protocol][1]", which [GitHub now supports][2].
Let's supposhere e you have no proxy issue, or firewall problem.

What is your remote upstream repo address?
(what git remote -v show lists?)

I would recommend:

  • making sure using an address like: https://gitbug/username/repo.git
  • having a ~/.netrc file with
 machine github.com login your_github_login password your_github_password 

It looks like you are trying to push using "smart http(s) protocol", which GitHub now supports.
Let's supposhere e you have no proxy issue, or firewall problem.

What is your remote upstream repo address?
(what git remote -v show lists?)

I would recommend:

  • making sure using an address like: https://gitbug/username/repo.git
  • having a ~/.netrc file with
 machine github.com login your_github_login password your_github_password 
  • try cloning again your repo git clone https://github.com/your_github_login/gitrepo.git, and push through that instance.

Note: as Noufal Ibrahim comments, you could use ssh (unless ssh port is blocked, leaving you only with http/https connections)

git clone ssh://user@server:project.git 
Source Link
VonC
  • 1.4m
  • 569
  • 4.8k
  • 5.7k
Loading