I'm new to git and haven't been able to find the right flow. I'm getting confused.
Here is what I have: 1 production server (A) and various local machines (X)
What I have done yet:
- Git Init(iated) my project folder on (A)
- Git Clone(d) in my Dropbox folder on (X)
- Developped a new feature locally (X), tested it and tried to push it to (A)
Then of course I realized (A) being not a bare repo I would have had to deal with version issues..
What I want:
- Git to be nice and easy
- Develop new features on (X) and push my commits to (A) (changes should be immediate)
- Be able to make changes directly on (A)
- Be able to add a "development" server between (A) and (X) to the scheme without too much trouble
I know I ask for a lot but I have looked into bare repositories, git flow,.. but I'm not sure what solution would best suit me.