The tag has no wiki summary.

learn more… | top users | synonyms

25
votes
7answers
7k 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 ...
21
votes
4answers
6k 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 ...
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: ...
7
votes
2answers
6k 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" ...
0
votes
2answers
836 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 ...
4
votes
1answer
943 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
814 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] ...
5
votes
4answers
324 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: ...
2
votes
1answer
135 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 ...
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 ...