Search Results

2
votes

Is there a git-merge --dry-run option?

Read the man page more carefully? --no-commit Perform the merge but pretend the merge …
5
votes

Restore a deleted file in a Git repo

Use git-bisect. Here's what to do: git bisect start git bisect bad git bise …
0
votes

Handling renames: svn vs. git vs. mercurial

One more thing about git that hasn't been mentioned yet, in addition to using heuristics to determine whether a rename has happened: If a file or even an entire directory tree is renamed, c …
2
votes

git: a quick command to go to root of the working tree

Unfortunately, changing your current directory can only be done by the shell, not by any subprocess. By the time git gets around to parsing your command, it's already too late -- git has already be …
0
votes

Detach subdirectory into separate git repository

I’ve found that in order to properly delete the old history from the new repository, you have to do a little more work after the filter-branch step. Do the clone and t …
3
votes

Automatically rewrite full git history to get rid of simple merge commits

I'm not sure how simple this could be. If you do a rebase -i, it will attempt to ignore all merges, which succeeds for merges without conflict, but stops and waits for you if there was …
4
votes

How to cope with “rejected” on git push?

If you haven't done anything weird, then the reason for this is that the remote has a commit that you are not aware of, and allowing the push to continue would ignore that commit entirely. …
3
votes

GIT: How to avoid duplicated commits while maintaining lots of forks?

Yes! The git-pull command performs a fetch followed by a merge. The merge yells at you since you have the same patch expressed as two commits with different names. If you do …
1
vote

git-config style configuration system

For Python, there is the ConfigParser module, which uses a similar file format. …
5
votes

git ignore files only locally

gitignore: Patterns which are specific to a particular repository but which do not …
2
votes

Git pull - error entry notuptodate cannot merge

To throw away all your changes and go back to the latest commit, use git reset --hard HEAD A fast-forward is a kind of merge where there's no actual merging to do, …
5
votes

What are these ^M’s that keep showing up in my files in emacs?

In git-config, set core.autocrlf to true to make git automatically convert lin …
2
votes

git: command not found

From the page you linked to: /usr/local/git/bin Is that in your PATH? Open ~/.profile in your favorite editor and add the line …
1
vote

Git: Should I ignore the Index or is there a killer application for it?

Aside from interactive staging, the other important usage of the index is during a merge conflict: Git stages the three versions of the file so it knows the file isn't ready, so there's a version o …