Search Results

0
votes

Build sequencing when using distributed version control

I'd use "Labels" Create a label whenever you have a successful (or even unsuccessful) build, and you'll be able to identify that build forever. It's not quite the same, but it does provide those …
13
votes

How are you structuring your Git repository workflow?

I like the way the Yahoo! User Interface (YUI) team appears to be working. I am not at Yahoo, nor am I on that team, but their git commit logs reveal a lot about their process. The YUI team …
1
vote

Git branches with completely different content

The benefit to doing this, is that it's possible to pull only the docs branch if that's all you're interested in. Like jrockway said, you can do this using another repository and submoduling if nec …
2
votes

SVN external in GIT

You should look into git submodules, it should allow almost exactly what you're looking for. …
7
votes

How would you go about reverting a single file to previous commit state using git?

To expand on Ron DeVera's post, where he mentions master~5, you can use any reference to a git commit, including the SHA-1 if that's most convenient. The point is that the command looks like this: …