Search Results

4
votes

Undoing a git reset --hard HEAD~1

If you have not yet garbage collected your repository (e.g. using git repack -d or git gc, but note that garbage collection can also happen automatically), then your commi …
22
votes

Why is Github more popular than Gitorious?

At the moment it seems that GitHub has more features, both as a project management site (Wikis, Integration with Bugtrackers), a social networking site and a Git hosting site (all the cool graphs). …
2
votes

How do I add an empty directory to a git repository

You can't. This is an intentional design decision by the Git maintainers. Basically, the purpose of a Source Code Management System like Git is managing source code and empty directories aren't sou …
2
votes

Locking binary files using git version control system

When I was using Subversion, I religiously set the svn:needs-lock property on all binary and even the hard-to-edit text files. I never actually experienced any conflicts. …
5
votes

Build sequencing when using distributed version control

I second the suggestion of using git describe. Provided that you have a sane versioning policy, and you don't do any crazy stuff with your repository, git describe will al …
4
votes

What should I know about Git before I start using it?

In my own experience moving from Subversion to Git, the most important thing is not what you need to learn, but what you need to unlearn. Distributed Version Control is very diffe …
2
votes

Does git have an equivalent for the bazaar automv plugin?

You might be looking for git add --all: Update files that git already knows …
3
votes

Retroactively Correct Authors with Git SVN?

git filter-branch can be used to rewrite large chunks of history. In this case, …
6
votes

Is there any way to clone a git repository’s sub-directory only?

No, that's not possible in Git. Implementing something like this in Git would be a substantial effort and it would mean that the integrity of the clientside repository could no longer be gu …
5
votes

relocating the .git folder

There are three possibilities I can think of: The GIT_DIR environment variable tells Git where to look for the repository. The default is .git, obviously, bu …
2
votes

How do I convert simple non source controlled project backups into a versioned git repository?

I don't quite know why you don't want to just commit all snapshots individually. I mean, a shell script (or Perl, Python, Ruby, Tcl, whatever) to do that, is probably less than 5 lines of code and …
16
votes

What is this Git warning message when pushing changes to a remote repository?

Actually, it means pretty much exactly what it says: somebody is working in the repository that you are pushing to, and that somebody has currently checked out the exact same branch that you are pu …
3
votes

Amending a Git commit to a shared repo

If you want to force the push, you can ... ehm ... pass --force to push. However, it is generally considered bad form to rewrite history on a public repository. …
3
votes

git newbie error - how to recover

Regarding the second part of your question: Just how harmful is it to clone instead of branching? Have I lost any information by doing this, e.g. shared history, common depen …
4
votes

Git, Can’t clone repo on windows

The problem is that MSysGit starts PLink in the background, i.e. the terminal is not actually connected to the input of PLink. That means that you simply can't type anything into PLink. …

1 2 next
15 30 50 per page