Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in

pushing to cloned repo with SourceTree

lgroger July 28, 2015

I am part of a team that is new to git and distributed version control and I am getting very frustrated...

We are using SourceTree.  We created a new repo with SourceTree on our shared development server.  We commited all of our existing files and then deleted all of the old Archived code and committed again.  We can still see the old code but it's cleaned up. Life is good...

Each person then used SourceTree to clone the repo on their local machine.  They now have all of the files, can make changes locally, stage them and commit them.  Everything is great until we try to push changes back to the main repo that we cloned from.  We get an error that we can't push to a non-bare repo. 

So based on that error message and some googling, I changed receive.denyCurrentBranch  to ignore in config of the repo we all cloned from.  Now we can push to it, but, OOPS, now the main repo shows our changes in SourceTree, but the actual files didn't change.  (and the main repo on our shared development server is now seeing all the file changes we made locally but weren't actually applied to the shared server as changes that need to be staged and committed now.)

It seems like this should all be so simple;  I know thousands of people successfully use this everyday... what are we missing?!!

 

2 answers

1 vote
Johannes Kilian
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
July 28, 2015

Why not convert your reference repository on development server to a bare repository? It's straightforward:

  • Make a (new) clone of your reference repository to your local machine
  • Delete the reference repository on the development server
  • Create a new BARE repository on your development server (using the name of your repository)
  • Push the previously cloned repository from your local machine to the new, bare repository on your development server
  • After this anybody should be able to push to this new repository ...

 

 

1 vote
Seth
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
July 28, 2015

See if this explanation of a bare repository helps: http://www.saintsjd.com/2011/01/what-is-a-bare-git-repository/

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events