Git commands

2010-03-05 Thread Matej Urbančič
Hello, I committed to master some figures that return error: Figures should not be copied when identical to original. http://l10n.gnome.org/vertimus/f-spot/master/docs/sl My mistake. I deleted them from local folder, but now I can not figure out the way, to get rid of them from master branch. I

Re: Git commands

2010-03-05 Thread Mario Blättermann
Hi Matej, Am Freitag, den 05.03.2010, 15:44 +0100 schrieb Matej Urbančič: > Hello, > > I committed to master some figures that return error: Figures should > not be copied when identical to original. > http://l10n.gnome.org/vertimus/f-spot/master/docs/sl > > My mistake. > > I deleted them from

Re: Git commands

2010-03-05 Thread Matej Urban
I have no idea what I did, but now it is correct. Funny ... M! ___ gnome-i18n mailing list gnome-i18n@gnome.org http://mail.gnome.org/mailman/listinfo/gnome-i18n

Re: Git commands

2010-06-20 Thread Matej Urban
Hello, I push translations for a few people and have 2 questions ... 1. I'd like to make my life a bit easier with aliases, but can not figure out how to make correct alias of a commit message: git config --global alias.name "commit sl.po -m "Updated translation" --author "Name SecondName "" I g

Re: Git commands

2010-06-21 Thread Claude Paroz
Le dimanche 20 juin 2010 à 21:28 +0200, Matej Urban a écrit : > Hello, > I push translations for a few people and have 2 questions ... > > 1. I'd like to make my life a bit easier with aliases, but can not > figure out how to make correct alias of a commit message: > > git config --global alias.n

Re: Git commands

2010-06-21 Thread Matej Urban
Thank you, it works. M! ___ gnome-i18n mailing list gnome-i18n@gnome.org http://mail.gnome.org/mailman/listinfo/gnome-i18n

Re: Git commands

2010-07-21 Thread Matej Urban
Hello, is it possible to "grep" the git commands? OR HOW do I output only the last line of git command. I want git pull to only output the last line usually something like - X files changed, XXX insertions(+), XXX deletions(-) - Already up-to-date. or when using git push only - 45604

Re: Git commands

2010-07-23 Thread Wouter Bolsterlee
Op woensdag 21-07-2010 om 21:40 uur [tijdzone +0200], schreef Matej Urban: is it possible to "grep" the git commands? OR HOW do I output only the > last line of git command. > > I want git pull to only output the last line usually something like > - X files changed,

Re: Git commands

2010-07-24 Thread Matej Urban
Hello, On Fri, Jul 23, 2010 at 9:54 PM, Wouter Bolsterlee wrote: > Op woensdag 21-07-2010 om 21:40 uur [tijdzone +0200], schreef Matej > Urban: > is it possible to "grep" the git commands? OR HOW do I output only the >> last line of git command. >> >> I want

Re: Git commands

2010-07-24 Thread Christopher Roy Bratusek
2>&1 means to both redirect stderr (2) and stdin (1) for more infos check your shell's manpage (eg man bash) > I have no idea what 2>&1 stands for, but it works! > I successfully combined it with egrep to do the job. Regards Chris ___ gnome-i18n mailing

Re: Git commands

2010-07-24 Thread Wouter Bolsterlee
Op zaterdag 24-07-2010 om 20:54 uur [tijdzone +0200], schreef Matej Urban: > On Fri, Jul 23, 2010 at 9:54 PM, Wouter Bolsterlee wrote: > > Perhaps git writes to stderr instead? Try this: > > > > $ git pull 2>&1 | tail -n1 > > > > ...instead. > > I have no idea what 2>&1 stands for, but it works!

Re: Git commands

2010-07-25 Thread Matej Urban
On Sat, Jul 24, 2010 at 11:26 PM, Wouter Bolsterlee wrote: > Op zaterdag 24-07-2010 om 20:54 uur [tijdzone +0200], schreef Matej > Urban: >> On Fri, Jul 23, 2010 at 9:54 PM, Wouter Bolsterlee >> wrote: >> > Perhaps git writes to stderr instead? Try this: >> > >> >  $ git pull 2>&1 | tail -n1 >>