Skip to content

Instantly share code, notes, and snippets.

@jgeewax
Created August 20, 2010 23:37
Show Gist options
  • Save jgeewax/541445 to your computer and use it in GitHub Desktop.
Save jgeewax/541445 to your computer and use it in GitHub Desktop.
(master)jj@im-jj:~/demo$ git checkout rc-1.0
Switched to branch 'rc-1.0'
(rc-1.0)jj@im-jj:~/demo$ echo '# bugfix1!' >> feature.py
(rc-1.0)jj@im-jj:~/demo$ git add -A && git commit -m "Added bugfix number 1"
[rc-1.0 92ab376] Added bugfix number 1
1 files changed, 1 insertions(+), 0 deletions(-)
(rc-1.0)jj@im-jj:~/demo$ echo '# bugfix2!' >> feature2.py
(rc-1.0)jj@im-jj:~/demo$ git add -A && git commit -m "Added bugfix number 2"
[rc-1.0 1dec2d3] Added bugfix number 2
1 files changed, 1 insertions(+), 0 deletions(-)
create mode 100644 feature2.py
(rc-1.0)jj@im-jj:~/demo$ git push
Counting objects: 8, done.
Delta compression using up to 2 threads.
Compressing objects: 100% (6/6), done.
Writing objects: 100% (6/6), 629 bytes, done.
Total 6 (delta 3), reused 0 (delta 0)
To my-server:/git/demo.git
52a6d49..1dec2d3 HEAD -> rc-1.0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment