Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What does the warning "redirecting to" actually mean?

I have noticed that sometimes when I git pull a project, there is a message saying:

"warning: redirecting to <url>" 

I tried searching what it means but I find nothing useful. What is it?

like image 636
Makogan Avatar asked Oct 26 '18 16:10

Makogan


People also ask

How does redirect work?

Typing a URL into your browser or clicking on a link sends a request for the page to the server of the website. A 301, “moved permanently,” redirect is a set of instructions which are executed when the request hits the server, automatically re-routing to a different page.

What is meant by send redirection?

1. A redirection describes sending a signal, data, or other information to an alternate location. Some examples of redirection are sending data intended for one drive to another drive or sending a user visiting a web page to another web page.

What is website redirection?

Redirecting URLs is the practice of resolving an existing URL to a different one, effectively telling your visitors and Google Search that a page has a new location.


1 Answers

check you remote

git remote -v 

probably yours remote is https://server/../project and does not end with .git ( https://server/../project.git)

like image 80
Dmitry Avatar answered Sep 28 '22 08:09

Dmitry