Tagged Questions
7
votes
2answers
989 views
Git submodule on remote bare
I've setup my environment so I can push to a remote bare repository, I used these commands to setup the remote repository:
$ mkdir ~/website.git && cd ~/website.git
$ git init --bare
And
$ ...
6
votes
4answers
3k views
How can I use git-archive to include submodules from a bare repository
I'm in the process of setting up a deployment script. The basic process is:
Push changes to a bare repository on the server
Then based on new tags will create a new folder for the release.
Use git ...