Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

12
votes
4answers
2k views

Best practices for cross platform git config?

Context A number of my application user configuration files are kept in a git repository for easy sharing across multiple machines and multiple platforms. Amongst these configuration files is ...
6
votes
6answers
2k views

Git: can I suppress listing of 'modified content'/dirty submodule entries in status, diff, etc?

Somewhen (around the 1.6.x releases, I think) git became aware of changes inside submodules. That only serves to annoy me: $ git status vendor | grep modified: # modified: vendor/rails ...
5
votes
3answers
227 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
193 views

Can I load one .gitconfig file from another?

With bash and zsh I can source subfiles in order to better organize my config. Can I do something similar with .gitconfig?
3
votes
2answers
37 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 ...
3
votes
3answers
49 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 ...
3
votes
2answers
219 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 ...
3
votes
3answers
570 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
191 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 ...
3
votes
3answers
423 views

How share a config file in git?

I have editor settings that I want to spread in all repositories. If the user defines its own settings, it should erase the repository choices of course. I want to do that because I have a class and ...
2
votes
1answer
50 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 ...
2
votes
4answers
260 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 ...
1
vote
0answers
50 views

Git config core.editor — how to make sublime text the default editor for git

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 ...
1
vote
1answer
63 views

can I pass argument to the alias of git command?

Can I pass argument to the alias of git command? Well, my specific question is: I have some alias in Git config, like: rb1 = rebase -i HEAD~1 rb2 = rebase -i HEAD~2 rb3 = rebase -i HEAD~3 rb4 = ...
1
vote
1answer
181 views

Minor Git Issue - Changing Default Editor [closed]

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, ...
1
vote
1answer
170 views

How does [github] section of .gitconfig work?

I'm wondering how github can read in these values? I could see a use of this for deployments etc. if I can define my own, custom sections. Thanks
1
vote
2answers
980 views

Configure a local branch for push to specific branch

Sorry if this question has been asked already. Am cloning from a repo named "git_lab" which has a branch named "test" When cloning i use "-b myname_test" to create a local branch named "myname_test" ...
1
vote
1answer
105 views

How do I force fetching of tags if I have the --no-tags option set

Whenever I run git fetch it fetches all the tags from origin. In a project with lots of tags, this can get quite bothersome. So I ran git config remote.origin.tagopt --no-tags so fetching will ...
1
vote
5answers
986 views

.gitconfig error

I edited my .gitconfig file to add support for LabView and it appears that I did something that Git doesn't exactly like. The problem is it (Git) doesn't tell me what it doesn't like. What did I do ...
1
vote
3answers
586 views

Unable to find .gitconfig in old Git commits

I noticed a moment ago that my .gitconfig -file was public at my repo. It contains my secret tokens. I git-add -u the file and committed. I am not sure whether this command removes the file from the ...
0
votes
1answer
45 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 ...
0
votes
2answers
115 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: ...
0
votes
1answer
152 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 ...