Git workflow for small teams
I’m working on a git workflow to implement in a small team. The core ideas in the workflow:
How to structure git repositories for project?
I’m working on a content synchronisation module for Drupal. There is a server module, which sits on ona website and exposes content via a web service. There is a also a client module, which sits on a different site and fetches and imports the content at regular intervals.
Best way to use GIT to maintain web application template
I am a sole developer and I have a web application template that I have created in Visual Studio. I am using GIT for source control, but only on my development machine. Presently I have a master and I create branches for new features, merging them back in to the master as I complete the features.
Code review process when using GIT as a repository?
What is the best process for code review when using GIT? We have an external GIT provider (Unfuddle) and have caps on resource usage – so we can’t have dedicated remote repositories for every dev.
Strategy for versioning on a public repo
Suppose I’m developing a (javascript) library which is hosted on a public repo (e.g. github). My aim in terms of how version numbers are assigned and incremented is to follow the guidelines of semantic versioning.
Collaboration using github and testing the code
The procedure in my team is that we all commit our code to the same development branch. We have a test server that runs updated code from this branch so that we can test our code on the servers. This test server is exposed on the internet so that we can test callbacks from third-party services like sendgrid. (where you specify a url for sendgrid to update you on the status of emails sent out)
Why is the sudden increase in number of Git submitters on Debian popcon graph in 2010-01?
Want to improve this post? Provide detailed answers to this question, including citations and an explanation of why your answer is correct. Answers without enough detail may be edited or deleted. Almost every article I’ve read 1 comparing Git and Mercurial it seems like Mercurial has a better command line UX with each command being […]
Is it safe to modify sources in repository while git svn dcommit is in progress?
I have a big repository and git svn dcommit
takes pretty big time.
Structure of a Git repository
Sorry if this is a duplicate, I looked.
Branching breaks continous integration?
I think this article, A Successful Git Branching Model, is very well known among experienced DVCS users.