Last active
December 17, 2015 08:49
-
-
Save Gedrovits/5583049 to your computer and use it in GitHub Desktop.
GitHub configuration to push same repository into different services.
Just change according to your needs your repository .git/config file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# GitHub configuration to push same repository into different services | |
[core] | |
repositoryformatversion = 0 | |
filemode = true | |
bare = false | |
logallrefupdates = true | |
# git push all | |
[remote "all"] | |
url = [email protected]:<login>/<repository>.git | |
url = [email protected]:<login>/<repository>.git | |
url = [email protected]:<login>/<repository>.git | |
url = ssh://<id>@<app-name>-<namespace>.rhcloud.com/~/git/<app-name>.git/ | |
# git push origin | |
[remote "origin"] | |
fetch = +refs/heads/*:refs/remotes/origin/* | |
url = [email protected]:<login>/<repository>.git | |
# git push bitbucket | |
[remote "bitbucket"] | |
fetch = +refs/heads/*:refs/remotes/origin/* | |
url = [email protected]:<login>/<repository>.git | |
# git push heroku | |
[remote "heroku"] | |
fetch = +refs/heads/*:refs/remotes/origin/* | |
url = [email protected]:<login>/<repository>.git | |
# git push openshift | |
[remote "openshift"] | |
fetch = +refs/heads/*:refs/remotes/origin/* | |
url = ssh://<id>@<app-name>-<namespace>.rhcloud.com/~/git/<app-name>.git/ | |
[branch "master"] | |
remote = origin | |
merge = refs/heads/master |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment