Tagged Questions
0
votes
1answer
16 views
How to update a “relay” repository?
I am working on two machines (one is "local" and another one is "remote"). I did the following set up:
On the "remote" machine: git init --bare repo1
On the "local" machine: git clone ssh://rep1
On ...
1
vote
1answer
96 views
Failed push with bare Git repo
I have a remote bare repo master and a local branch cloud which I have set to track it with
git branch cloud -u amazon/master
but
git push
results in
fatal: The upstream branch of your current ...
0
votes
1answer
148 views
git push does not update remote workdir
I do execute the following steps to create on DEBIAN Server
1) git bare repo;
2) a working dir, where the files are copied after local git push;
3) a local clone on Windows, bare server repo is ...
1
vote
1answer
298 views
Git workflow involving a local repository and 2 remote repositories: staging and production repositories on the same server
I have read a few Stack Overflow threads about this, but many of them did not seem to answer the question that I was asking, or at least there were different conditions that didn't seem applicable to ...
1
vote
2answers
3k views
Git bare repository has master branch checked out?
I'm quite sure this question has been asked before but I dont seem to find it. So sorry if it is a dublicate.
I have a bare repository lets call it project_x.git, if we check the config file it ...
1
vote
3answers
129 views
where are project files in remote repo in Git?
I start to use Git and my project VCS.
I have created a remote repo using
git init --bare
in /codes-repo and push changes from local repo to there. then I want to move project files from there to /...