-
-
Notifications
You must be signed in to change notification settings - Fork 48
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
unable to use msync on already checked out module #81
Comments
Have you edited your gitconfig file at all? I remember igalic had a mysterious issue at some point due to his git config. |
My git config should be fine: [user]
email = [email protected]
name = Tim Meusel
signingkey = BF1C4CC0
[push]
default = simple
[alias]
# Usage: git signoff-rebase [base-commit]
signoff-rebase = "!EDITOR='sed -i -re s/^pick/e/' sh -c 'git rebase -i $1 && while test -f .git/rebase-merge/interactive; do git commit --amend --signoff --no-edit && git rebase --continue; done' -"
# Ideally we would use GIT_SEQUENCE_EDITOR in the above instead of EDITOR but that's not supported for git < 1.7.8.
# See http://cat.pdx.edu/~hunner/git-lg.png for an example
lg = "log --pretty=format:'%C(yellow)%h%C(reset) %C(blue)%an%C(reset) %C(cyan)%cr%C(reset) %s %C(green)%d%C(reset)' --graph --date-order"
[commit]
gpgsign = true |
Have you tried a git clean -ffdx to make sure cached files aren't causing Rob Nelson |
I have seen a similar issue when the module has msync'ed before and the resulting remote branch was removed post merge, I suspect that is the issue being seen here... to confirm removing modules/#{mod} should clear the issue. |
I'm not sure if I'm using it wrong or if it is really broken: I've synced the zabbix module in the past, it is already checked out at modules/puppet-zabbix. I'm unable to do a new modulesync:
I think the issue is that it tries to checkout a remote branch called modulesync, but it doesn't exist.
The text was updated successfully, but these errors were encountered: