The gitconfig tag has no wiki summary.
4
votes
1answer
89 views
Using Notepad++ as Git Editor without affecting settings
I use and love Notepad++ (http://notepad-plus-plus.org/) as my go to simple text editor. I have been using it as my default editor for git for a few weeks now and have noticed some funny behavior.
...
0
votes
0answers
12 views
How to disable relative date display on gitweb?
How can I stop gitweb from displaying all dates relative, eg: 3 days ago, 2 weeks ago, 3 days ago, 11 days ago, 21 hours ago? It gets quite annoying when I want to skim and see what changed around a ...
0
votes
1answer
13 views
How to configure unified diff context via git-config?
How can I configure via git-config the unified context so that I don't have to always provide the -U or --unified option with a value?
0
votes
2answers
20 views
Using a separate user for multiple Git remotes on the same repository
Is there a way to clone a repository, add a second remote, but use a different/separate user for that second remote automatically when pushing/pulling?
My use case is to have the remote "origin" only ...
0
votes
0answers
37 views
How to repo sync from a particular server
There are several server is available in ~/.gitconfig file configured. the below command works fine:
repo init -u git://abc/platform/manifest -b branch-123
This abc server is not available in ...
1
vote
1answer
29 views
How to semi-manually control a file in git?
My problem is as such:
I have a repository for my dotfiles which includes the .gitconfig file.
I store this repository on github and do not want to show my email/name there.
Simple solution:
use ...
0
votes
1answer
45 views
Version control of dotfiles with machine-specific changesets
I store dotfiles in a git repo, however I do have different set of local changes for .gitconfig (which is under version control) - it may be different environment (autocrlf true) or different ...
2
votes
2answers
73 views
What does [core] in .gitconfig do, and how to set it up?
I wish to know what does [core] do, and how to set it up in general. I found the .gitconfig file in my home directory to be this:
[core]
autocrlf = input
safecrlf = true
[user]
...
1
vote
3answers
75 views
Can gitconfig options be set conditionally?
Via Github I use the same set of "dot files" on several different computers and servers. On the Macs and Linux boxes under my direct control I have Sublime Text 2 installed and set up as my git merge ...
1
vote
1answer
74 views
gitconfig: locations of git configuration files
How can I find/list the global and the users config files? I mean "Git-native functionality", not Linux commandos like find.
Thx
0
votes
2answers
105 views
How do I configure Araxis Merge for use with Git?
I understand that Araxis Merge is now a "fully supported" mergetool for Git, so that much of what I can find about configuring Git to use it is now out of date. In particular, Araxis Merge should work ...
0
votes
1answer
99 views
How could I configure git with Diffmerge on Windows 7 (so it doesn't crash)?
I'm trying to get Git to work with DiffMerge, and I've never used either of them before this week. For what its worth, all of this is for Ruby on Rails.
I followed the instructions at ...
0
votes
0answers
37 views
How do I make git ignore mode changes (chmod) globally [duplicate]
Possible Duplicate:
Git ignoring gitconfig?
According to this How do I make git ignore mode changes (chmod)? I can ignore the mode change on a particular repos. That is fine.
But how to ...
3
votes
2answers
153 views
Git always merge without a fast-forward, except for when pulling?
Is there a way to have git always merge without a fast-forward, except for when pulling?
Following a nice git-flow, I like keeping my branch history (easier to remove features, etc later on), so I ...
0
votes
1answer
39 views
GitConfig: bad config for shell command
I'm trying to set up an alias, as I have many.
For some reason, this one does not work. Any idea?
[alias]
t = "!git log --decorate --oneline | egrep '^[0-9a-f]+ \(tag: ' | sed -r 's/^.+tag: ([^ ...
1
vote
1answer
56 views
Is it possible to ignore git file mode change in my own ~/.gitconfig
From old thread: How do I make git ignore mode changes (chmod)?
It seems to me that I need to do on every repository, right? Is it possible to set in my own ~/.gitconfig?
2
votes
1answer
60 views
Git ignores core.filemode setting in template
I've been having a weird problem with git behaviour. It seems that it is ignoring core.filemode setting in my template and I want to to be set to false.
My system:
OS X 10.8
Git 1.7.10.2 (Apple ...
1
vote
2answers
106 views
How to make git ignore changes to submodules by default
Since gitmodules were introduced in Git, I like to add them like so:
[submodule "actionbarsherlock"]
path = actionbarsherlock
url = git://github.com/JakeWharton/ActionBarSherlock.git
ignore = dirty
...
3
votes
1answer
224 views
Using git with diffmerge with no prompts and no alias
On OSX, I'm using diffmerge as my git diffing tool. Here is my .gitconfig:
[diff]
tool = diffmerge
[difftool "diffmerge"]
cmd = diffmerge \"$LOCAL\" \"$REMOTE\"
[alias]
d = ...
2
votes
0answers
58 views
Escape $num in Git aliases
I'm trying to alias a simpler stash so I can do git load <stashname>, something along this line:
load = !git stash list | grep ' $1$' | awk '{ print $1 }' | sed '$ s/:$//'; echo
...
2
votes
1answer
133 views
gitconfig aliasing using !source doesn't work (zsh)
I have a gitconfig like this:
[alias]
l = "!source ~/.githelpers && pretty_git_log"
When I run it I get this:
[desktop] git l
source ~/.githelpers && pretty_git_log: 1: source: not ...
3
votes
1answer
81 views
How to set difftool/mergetool for a specific file extension in Git?
Is it possible to set a custom tool for merging files with a specific extension in Git?
Thanks for any pointers!
Update
I wasn't able to come up with any better solution than defining a custom ...
3
votes
1answer
212 views
Always use the pager for git diff
I'm using less as my git pager.
If the git diff output is readable on one page, my git prints the output to the screen.
Sometimes I'm too fast with typing Ctrl+D (half page down), which kills my ...
1
vote
2answers
1k views
git init failed, what's wrong?
this issue is not same as Bad git config file .git/config, since i failed when using git init... seems there is nothing wrong with /home/mirror/.gitconfig
[mirror@home php]$ git init
error: Malformed ...
2
votes
1answer
866 views
Git clone return result=18 code=200 on a specific repository
I'm trying to clone a internal repository from our company repository, and I keep getting this error:
error: RPC failed; result=18, HTTP code = 200
It always happens only after the repository have ...
1
vote
1answer
801 views
Setting diffmerge as visual Git difftool not working
I am trying to configure DiffMerge as my difftool in Git but having no luck. This is the revelent section of my .gitconfig file (the other settings not shown are just for the user).
[diff]
...
1
vote
1answer
196 views
What does git-config(1) mean when it says “colors are used only when the output is to a terminal”?
I'm outputting to a terminal, but Git is not correctly detecting that I'm outputting to a terminal, for the purposes of coloring the output. My question is, what does git-config(1) really mean when it ...
13
votes
2answers
3k views
git: 'credential-cache' is not a git command
I followed these instructions to the letter, including the part about password caching. It seems like the instructions are wrong, because every time I git push origin master I get this error:
git: ...
1
vote
2answers
140 views
Override 'git pull' to exit with an echo statement
I would like to make the changes in my .gitconfig file, so that when i run the "git pull" it exits with the echo statement "please use git xpull instead of git pull" here xpull is my alias?
OR is it ...
0
votes
2answers
421 views
Git editor error
I get following error message, when I try to run git rebase -i for squashing my commit:
/usr/libexec/git-core/git-sh-setup: line 112: mate: command not found
How does git look for the editor?
From ...
10
votes
3answers
170 views
Show the full command when executing a Git alias?
Is there an option to show the full command when using an alias?
Example:
$ git ci -m "initial commit"
Full command: git commit -m "initial commit"
...
$ git lg
Full command: git log --graph ...
0
votes
3answers
194 views
How to set git:username automatically based on URL of remote repo
I have some git repositories on my local machine that are hobby projects (hosted on GitHub), and some that are work-related (hosted elsewhere). Because I am doing it wrong (don't ask, it's irrelevant) ...
0
votes
2answers
826 views
Git ignoring gitconfig?
It appears Git is ignoring ~/.gitconfig
$ git config --global core.filemode false
$ git config -l
core.filemode=false
core.filemode=true
So now there are 2 entries for core.filemode and git is ...
2
votes
1answer
140 views
How to use “git config” command to configure sections with name?
How could I use "git config" command to implement the configuration like this:
[diff "odf"]
textconv=odt2txt
1
vote
1answer
89 views
How can I set up an alias for “git last” that accepts a number as an argument?
In Pro Git Scott Chacon gives some nice examples of some alias which might be helpful, including one that shows the last commit: git last which is the equivalent of log -1 HEAD:
git config --global ...
5
votes
4answers
322 views
Add a Git alias containing a semicolon
When I try to create an alias
[alias]
my-alias = submodule foreach 'git foo ; git bar'
Git (version 1.7.1) spews the error
user@host:/path/repo.git$ git my-alias
error: unclosed quote
fatal: ...
27
votes
3answers
9k views
Git config core.editor — how to make sublime text the default editor for git on Windows
I've been having a problem setting sublime text 2 as the core.editor with git. I've read through every post I could find addressing the problem, but still nothing is working for me. I am running ...
3
votes
4answers
511 views
Set username and email for msysgit portable
I'm using msysgit for a school project so I can do commits and such while on the computers at school which do not have it installed.
Now the first thing one does when they install git is set up their ...
9
votes
4answers
400 views
Different .gitconfig for a given subdirectory?
I use two different git emails, one for work and one for public projects. Initially I thought that I could create a separate .gitconfig with a different email in a folder where all my public repos are ...
2
votes
1answer
287 views
Escaping alias commands in a gitconfig files
I'm trying to add an alias command to my gitconfig file and it reports "bad config file" on the line I've added. I suspect it's something to do with the sed command and some escaping issues, but I ...
0
votes
1answer
85 views
Git Setup - New User on old PC
I've taken ownership of a PC that was a former employee. Git was installed and the .config file etc is therefore under the former employees directory under ./Users.
Do I need to do a brand new ...
5
votes
2answers
1k views
mergetool from .gitconfig being ignored?
git config --global mergetool.bc3 "\"c:/program files (x86)/beyond compare 3/bcomp.exe\" \"$LOCAL\" \"$REMOTE\" \"$BASE\" \"$MERGED\""
git mergetool
/usr/lib/git-core/git-mergetool--lib: line 116: ...
6
votes
3answers
1k views
Aliasing github.token in ~/.gitconfig to a shell command
I would like to set the value of github.token in my ~/.gitconfig to be the result of a shell command. I currently have the following:
[github]
user = zmanji
token = !echo ~/.githubtoken 2> ...
4
votes
1answer
932 views
Pass an argument to a Git alias command
Can I pass arguments to the alias of a Git command?
I have some alias in Git config, like so:
rb1 = rebase -i HEAD~1
rb2 = rebase -i HEAD~2
rb3 = rebase -i HEAD~3
rb4 = rebase -i HEAD~4
....
Is it ...
1
vote
1answer
1k views
Minor Git Issue - Changing Default Editor [duplicate]
Possible Duplicates:
How can I set up an editor to work with Git on Windows?
Trouble on setting the git 'core.editor'
I'm trying to change my default git text editor to TextMate, ...
6
votes
4answers
3k views
How to tell git to use the correct identity (name and email) for a given project?
I use my personal laptop for both work and personal projects and I would like to use my work email address for my commits at work (gitolite) and my personal email address for the rest (github).
I ...
5
votes
2answers
2k views
git submodule update with other user
I'm logged in as user A on my machine, but my repo is accessible through username B on the server that I pull from. The .gitmodules file has url = ssh://domain.com/abc/def.git.
How can I configure ...
11
votes
4answers
5k views
git:// through proxy
I'm behind a firewall that is blocking port 9418 (git) and am trying to install some tools that are explicitly doing a checkout of git://github.com/..., so I can't switch to https for the checkout.
...
3
votes
4answers
384 views
.gitconfig. How to protect?
If you see .gitconfig file it contains user's name and email address. I wish to protect it from user as they can always mask their identity as it still configurable by user.
Ex, In my company ...
0
votes
1answer
345 views
What settings affect user name in Git?
I wanted to change the user name in my git configurations, but when I think I change the user name or email (in .gitconfig file) it restores back to the previous one. I have also tried doing it ...
