Did you create the clones using the anonymous clones from my website? Can you verify?
To check that your clone has been properly converted, try git pull --rebase If the command works, then the clone is good. On Fri, May 8, 2009 at 2:53 AM, Tirumurti Vasudevan <agnih...@gmail.com> wrote: > more problems > i am doing something wrong. what is it? > tia > tv > ------- > d...@narayana:~/git$ cd brasero/ > d...@narayana:~/git/brasero$ git status > # On branch master > # Untracked files: > # (use "git add <file>..." to include in what will be committed) > # > # po/brasero.pot > nothing added to commit but untracked files present (use "git add" to track) You ran 'intltool-update -P' which created po/brasero.pot. This file does not get committed, so the above command shows there is nothing to commit. If you did not commit something earlier, then there is nothing that can be pushed. > d...@narayana:~/git/brasero$ git push > To ssh://vasude...@git.gnome.org/git/brasero > ! [rejected] master -> master (non-fast forward) > error: failed to push some refs to > 'ssh://vasude...@git.gnome.org/git/brasero' It is strange that you get an error, since there is probably nothing to push. > d...@narayana:~/git/brasero$ git pull --rebase > remote: Counting objects: 31, done. > remote: Compressing objects: 100% (23/23), done. > remote: Total 23 (delta 21), reused 0 (delta 0) > Unpacking objects: 100% (23/23), done. > From ssh://vasude...@git.gnome.org/git/brasero > 17fe531..54f7ba8 master -> origin/master > First, rewinding head to replay your work on top of it... > Applying Updated Tamil translation > Applying Updated Tamil translation This shows that there are two commits that were pushed earlier and are not downloaded. It appears you committed those changes at some point earlier. > d...@narayana:~/git/brasero$ git status > # On branch master > # Untracked files: > # (use "git add <file>..." to include in what will be committed) > # > # po/brasero.pot > nothing added to commit but untracked files present (use "git add" to track) > d...@narayana:~/git/brasero$ git add ta.po > fatal: pathspec 'ta.po' did not match any files The ta.po should be in po/, so git add po/ta.po 'git status' however does not show that po/ta.po is a new untracked file. Simos _______________________________________________ gnome-i18n mailing list gnome-i18n@gnome.org http://mail.gnome.org/mailman/listinfo/gnome-i18n