Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Why did git push origin master draw ASCII art? [duplicate]

Tags:

git

bitbucket

When I ran git push origin master, I saw a very unusual ASCII picture. I have run git push hundreds of times and have never seen this before. Is there any explanation for what it means?

$ git push origin master
Counting objects: 5, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (3/3), done.
Writing objects: 100% (3/3), 1.05 KiB | 0 bytes/s, done.
Total 3 (delta 2), reused 0 (delta 0)
remote: 
remote: ++++                               ++++
remote:   +++++++                     +++++++  
remote:      +++++++++++++++++++++++++++++     
remote:          +++++++++++++++++++++         
remote:                 +++++++                
remote:       +++                     +++      
remote:       ++++++     +++++     ++++++      
remote:        ++++++    +++++    ++++++       
remote:        +++++++    +++    +++++++       
remote:         ++++++++   +   ++++++++        
remote:          ++++++++     ++++++++         
remote:            ++++++++ +++++++++          
remote:             +++++++++++++++             
remote:              +++++++++++++              
remote:                +++++++++                
remote:                  +++++++                
remote:               +   +++++++               
remote:              +++   +++++++              
remote:             ++++++  +++++++             
remote:            +++++++   +++++++            
remote:           +++++++     +++++++           
remote:          +++++++       +++++++           
remote:          +++++++       +++++++           
remote:          +++++++       +++++++           
To [email protected]:my-name/my-project.git
   57367b4..3148737  master -> master

I am running OS X 10.7.5.

The picture actually has rainbow colors and looks like this. enter image description here

like image 617
I Like to Code Avatar asked Jun 28 '15 01:06

I Like to Code


People also ask

How do I fix git push origin master?

If git push origin master not working , all you need to do is edit that file with your favourite editor and change the URL = setting to your new location. Assuming the new repository is correctly set up and you have your URL right, you'll easily be able to push and pull to and from your new remote location.

What happens after git push origin master?

Git Push Origin pushes all the branches to the main branch. Git Push Origin Master pushes your master branch to the origin. Behavior could be changed via git config.

Why does git push origin master?

Whenever we need to push the changes to a remote repository, we use git push along with the remote repository “origin” and “master” branches. The term used is “git push origin master“. To pull the changes from the remote repository to local, we use git pull along with remote repository “origin” and “master” branch.

Does git push push to origin?

By default, Git chooses origin for the remote and your current branch as the branch to push. If your current branch is main , the command git push will supply the two default parameters—effectively running git push origin main .


1 Answers

bitbucket did this to celebrate the Supreme Court decision. More generally, anything printed out by a post-receive hook on the server is visible to the client after a push.

like image 86
Ismail Badawi Avatar answered Sep 21 '22 08:09

Ismail Badawi