Skip to content

Instantly share code, notes, and snippets.

@srish
Created May 31, 2011 14:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save srish/1000607 to your computer and use it in GitHub Desktop.
Save srish/1000607 to your computer and use it in GitHub Desktop.
My log for pushing the code to git.gnome
root@loma-laptop:/home/loma/Desktop/gcompris/src# git config remote.origin.url ssh://srishs@git.gnome.org/git/gcompris
root@loma-laptop:/home/loma/Desktop/gcompris/src# git pull
You asked me to pull without telling me which branch you
want to merge with, and 'branch.braille.merge' in
your configuration file does not tell me, either. Please
specify which branch you want to use on the command line and
try again (e.g. 'git pull <repository> <refspec>').
See git-pull(1) for details.
If you often merge with the same branch, you may want to
use something like the following in your configuration file:
[branch "braille"]
remote = <nickname>
merge = <remote-ref>
[remote "<nickname>"]
url = <url>
fetch = <refspec>
See git-config(1) for details.
root@loma-laptop:/home/loma/Desktop/gcompris/src# git checkout braille
M configure.ac
M po/POTFILES.in
M src/Makefile.am
M src/anim-activity/anim.py
M src/braille_alphabets-activity/braille_alphabets.py
Already on 'braille'
root@loma-laptop:/home/loma/Desktop/gcompris/src# git branch
* braille
master
root@loma-laptop:/home/loma/Desktop/gcompris/src# git add braille_alphabets-activity/
root@loma-laptop:/home/loma/Desktop/gcompris/src# git commit -m "Changes in First Activity"
[braille 91585c8] Changes in First Activity
1 files changed, 1 insertions(+), 222 deletions(-)
rewrite src/braille_alphabets-activity/braille_alphabets.py (99%)
root@loma-laptop:/home/loma/Desktop/gcompris/src# git push origin braille
Counting objects: 9, done.
Delta compression using up to 2 threads.
Compressing objects: 100% (5/5), done.
Writing objects: 100% (5/5), 2.08 KiB, done.
Total 5 (delta 4), reused 0 (delta 0)
To ssh://srishs@git.gnome.org/git/gcompris
0f86169..91585c8 braille -> braille
root@loma-laptop:/home/loma/Desktop/gcompris/src#
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment