1
vote
6answers
89 views
How many people were involved in a project? Based on Revision Control System
How do you know how many developers were involved in a project using a Revision Control System? A friend of mine found this way to look up the answer in git log:
git log | grep Author: | sort -u …
0
votes
2answers
17 views
How can I force the repository chooser in git gui
I put my home directory under version control and if I start git-gui now from my Gnome panel I can only work on this repository. There is no longer this dialog that lets me browse for or enter a …
2
votes
1answer
62 views
Which merge strategies does mercurial use?
I work in an environment with large scale multi-parallel branching. Looking at GIT I see it has several merge strategies:
already up-to-date
fast-forward
octopus
resolve
recursive
Does Mercurial …
0
votes
2answers
39 views
How do you work with a git repository within another repository?
I have a git media repository that I'm keeping all of my javascript and css master files and scripts that I'll use on various projects. My question is if I create a new project that's in it's own git …
3
votes
3answers
50 views
Git: merging public and private branches while while keeping certain files intact in both branches
Hi,
I've read a few git questions here, but could not find an answer to this one:
I have a public and a private branches where I want to allow certain files to diverge.
Those are configuration …
1
vote
3answers
43 views
Merging multiple git branches into master?
So I have 3 git branches:
master
refresh
auth_upgrade
I haven't really been using branches like I should...so master is way out of date, refresh is somewhat out of date and auth_upgrade is …
4
votes
2answers
139 views
A git hook for whenever I change branches?
So here's an interesting situation when using git and python, and I'm sure it happens for other situations as well.
Let's say I make a git repo with a folder /foo/. In that folder I put …
2
votes
2answers
45 views
Git: how to reverse-merge a commit?
With SVN it is easy to reverse-merge a commit, but how to do that with Git?
2
votes
0answers
17 views
Using Hudson and build steps with multiple git repositories
I'm trying out Hudson to replace our current Buildbot setup. I installed the git plugin. Our current setup is like:
ssh://server:/repo/test_framework.git
ssh://server:/repo/project_a.git
Now, to …
2
votes
1answer
22 views
What is the easiest/fastest way to find out when a git branch was created?
I was trying to find out when a certain feature branch in one of my repositories was created and I found that surprisingly hard. I ended up using a combination of git show-branch and git log.
Is …
2
votes
2answers
32 views
Avoid pass-phrase prompt on git push to remote.
When I created my SSH key while setting up git, I chose to use a pass-phrase for the key. Now, whenever I push to my remote repository (unfuddle), I get prompted for this pass-phrase. Is there some …
30
votes
20answers
2k views
What are your favorite git features or tricks?
What are your favorite git features or tricks, or even workflows? Post one feature, trick, or workflow per answer.
2
votes
3answers
87 views
How to get the latest tag name in current branch in Git?
What's the simplest way to get the most recent tag in Git?
git tag a HEAD
git tag b HEAD^^
git tag c HEAD^
git tag
output:
a
b
c
Should I write a script to get each tag's datetime and compare …
0
votes
3answers
42 views
How to build a web App with Git front end utils ?
Hi,
I know how to work in git. But, now I want to set up a git server in my org. so that developers can access it via internet from any where around the globe. I know about Github and I want to …
6
votes
5answers
880 views
What is a git topic branch?
What is a git topic branch? Does it differ from an ordinary branch in some way? Are there any branches that are not topic branches?
