Home > Back-end >  Can I hide remote repository URL when pushing to remote server from git output?
Can I hide remote repository URL when pushing to remote server from git output?

Time:07-17

When pushing to remote repository git output show repository URL like this:

hide remote repository URL when pushing to remote server

It is possible to hide URL from output.

CodePudding user response:

A possible (extreme) workaround would be to navigate to your Bitbucket Account's Settings (Avatar(Bottom Left) > Bitbucket Settings > Account settings)

https://confluence.atlassian.com/bbkb/files/939922948/939922945/1/1510318930828/image2017-11-10 21:1:3.png

And deselect the Enable Console message option:

options -- https://confluence.atlassian.com/bbkb/files/939922948/939922947/1/1510318930728/image2017-11-10 21:1:27.png

You should no longer see the remote Bitbucket pull request message, meaning no more remote URL.

  • Related