My log for pushing the code to git.gnome
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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