Luka Mis
Luka Mis

Reputation: 573

Alternative to terminal (gui) for creating remote git repos

I use SourceTree as git client and i can not create remote repos with it. I would like to use app with some sort of gui so i can avoid creating remote repos in terminal. What are my options. I use mac os.

*Update: I would like to connect to our in-house git server.

Tnx

Upvotes: 1

Views: 143

Answers (1)

VonC
VonC

Reputation: 1323175

It depends on what is the remote Git repo hosting service.

For GitHub, for instance, you can use GitHub for Mac to publish a new local repo to a new remote GitHub repo.

Not all hosting service provide that kind of feature though.
For an in-house hosting service, there is no direct way to create a repo through a GUI directly on the remote server with Git alone: that bare repo needs to be created on the server first, before the GUI can clone it on the client.

If you can install a local hosting repo service, like for instance GitLab, then you create repio on the server through the GitLab GUI.

Upvotes: 1

Related Questions