Use Git with existing files and update branch after push

梦想与她 提交于 2019-12-02 16:59:38

问题


we are currently starting to work with Git and run into some trouble.

Baiscally what i want is to have a Git-Repository that users can push to and pull from.

Also this repository should work as Preview Version of the master branch, so we need to have the script files in the repository itself.

I initiated the repository with "git init test.git". So it's not a bare repo.

Question is how to setup git that it holds the current version of the master branch as real files and i can setup a url to reach the current master branch of the repository.

When i create a repository and try to push to it i get an error that the current master branch is checked out on the repository and i cant push to it.

Any ideas?


回答1:


You must not push to a non bare repository! You cannot push to a checked out branch!

Now given you situation my suggestion is:

Keep a blessed bare repository! Do all your development on the local, merge/rebase on master and then push to blessed bare.

You can write the post-receive hook of the blessed bare that it has a code/runs a script that has code to cd into your production repo, and pull from blessed bare.(it will be a fast-forward as you might have resolved conflicts before pushing to blessed bare)

This way, on every push to 'blessed bare', you pull into the production and update the checked out master!

Hope this solves the problem.

Happy gitting!




回答2:


Based on what you have described, then I think implementing the branching strategy known as GitFlow might work for you.



来源:https://stackoverflow.com/questions/25969974/use-git-with-existing-files-and-update-branch-after-push

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!