3
votes
3answers
59 views
If GIT doesn’t track file renames how do we keep from losing these changes in merges?
In our application we often need to rename a file/package on a release branch and then merge this change (along with many others) to the trunk. A big problem is that many SCM solutions (our current …
2
votes
2answers
31 views
git-diff to ignore ^M
In a project where some of the files contains ^M as newline separators. Diffing these files are apparently impossible, since git-diff sees it as the entire file is just a single line.
How does one …
2
votes
1answer
28 views
git: ignoring files in the origin
Is there a way to tell git to ignore a file that's stored in its origin? Since the files in question are in the upstream repository, just adding them to .gitignore or .git/info/exclude don't work.
…
3
votes
5answers
62 views
GIT clone to external drive for backup
Hey,
Go easy on me, I'm not much of a command line man... We have GIT set up within our windows network (using msysgit & GitExtensions). We each have our own repositories and we push to a remote …
1
vote
2answers
43 views
Recovering from forgetting to .gitignore
I have been caught out by what appears to be a common enough problem for git newbies.
I forgot to .gitignore a particular file, and adding it to .gitignore after having committed makes no difference.
…
1
vote
1answer
39 views
Change old commit message on Git
Hi,
I was trying to edit an old commit message as explained here.
The thing is that now, when I try to run rebase -i HEAD~5 it says interactive rebase already started.
So then I try: git rebase …
1
vote
1answer
35 views
use Winmerge inside of Git to file diff
Is there a way to use Winmerge inside of Git to do Diffs?
Thanks
2
votes
2answers
39 views
How is the Git config evaluated when commit-ing?
I'm setting up My First Git Repo, and on running;
git config --list
I've noticed I've got multiple entries for certain config values;
core.autocrlf=input
[...]
core.autocrlf=false
I'm guessing …
2
votes
3answers
45 views
Can different git-svn clones of the same svn repository expect to be able to share changes then git svn dcommit ?
Hi,
I've read a great deal of "go from svn to git" and other "git-svn workflow" articles on the web, and still I think they often deal with overly simple situations. They are often targeted at guys …
2
votes
3answers
63 views
Git: How to get remote updates without checkout?
Hi,
I'm looking for a way to list all updated files in the remote master branch, similar to svn log.
Is that possible in Git?
Thanks,
Christoffer
EDIT (Solution):
git fetch
git diff --name-status …
1
vote
1answer
33 views
Can’t get automated release working with Hudson + Git + Maven Release Plugin
As the title says, I'm trying to get an automated release job working on Hudson. It's a Maven project, and all the code is in Git. Manually, I do the release on my personal machine like so:
git …
1
vote
1answer
28 views
File permissions resetting when switching branches in Git
I created a Git repository on a folder that had a different Linux owner than my user. It wasn't until much later that I set the group permissions to write so that my user could make changes and …
3
votes
4answers
97 views
GIT - how to keep a file common across all branches
Suppose I have a file "ChangeLog" in branch "master". I want to record information about all changes in any branch in this file (in more detail than in a commit message and with other descriptive …
1
vote
2answers
19 views
Fabric error: Fatal error: local() encountered an error (return code 2) while executing ‘git commit -m ‘message’
I'm trying to setup a fabfile to deploy my Django app.
I can't figure out why I'm getting this error:
Fatal error: local() encountered an error (return code 2) while executing 'git commit -m 'changed …
1
vote
2answers
45 views
Git how to find out which single commits that done on one branch and not another
I am about to create a patch file for a project. My branch is the "master" in my local repository. And the remote upstream branch is mapped to the local branch "origin". \
With this command I can …
