Answer the question
In order to leave comments, you need to log in
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
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...
You can, deploy your own Git server:
https://git-scm.com/book/ru/v1/Git-%D0%BD%D0%B0-%D...
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
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.
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question