A
A
Alexey Markov2018-08-06 14:51:32
git
Alexey Markov, 2018-08-06 14:51:32

Is it possible to develop with git without deploying a repository on a bitbucket type server?

Good day.
Periodically, the question arises with simple projects how to quickly deploy vcs on a server in order to work alone.
I usually use vcs built into phpstorm.
Question: Is it possible to use git without bitbucket, lab or git hub by directly pushing to the server where the git is deployed.
More precisely, I know what is possible, I'm interested in a good instruction for this action

Answer the question

In order to leave comments, you need to log in

5 answer(s)
S
SagePtr, 2018-08-06
@orbitroom

Yes, no one bothers to push to the git repository directly via SSH, for example.
https://git-scm.com/book/en/v1/Git-%D0%BD%D0%B0-%D...

B
bkosun, 2018-08-06
@bkosun

You can, deploy your own Git server:
https://git-scm.com/book/ru/v1/Git-%D0%BD%D0%B0-%D...

S
Saboteur, 2018-08-06
@saboteur_kiev

you can use it without a server at all, you can use
git init locally and forward
you can use it even within the file system
cd c:/mygitserver/repo1.git
git init
cd c:/myprojects
git clone c:/mygitserver/repo1.git

G
GavriKos, 2018-08-06
@GavriKos

What other instructions do you need? How to push git push? With t.z. no bitbucket git. Bitbucket is just a wrapper for git administration, but has nothing to do with the process of working with the version control system.

I
Ivan, 2018-08-06
@LiguidCool

There are platforms: the same GitLab or Gogs - put yourself wherever you want and use it.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question