Created
June 2, 2015 13:14
-
-
Save stmuk/e561adf3063928122bdc to your computer and use it in GitHub Desktop.
git workflow
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
steve@fizzy:~/sandbox/perl6-lwp-simple | |
$ git checkout -b stmuk | |
Switched to a new branch 'stmuk' | |
steve@fizzy:~/sandbox/perl6-lwp-simple | |
$ vi t/parse-url.t +48 | |
steve@fizzy:~/sandbox/perl6-lwp-simple | |
$ git commit -m"isa-ok now" -a | |
[stmuk cdbbe17] isa-ok now | |
1 file changed, 1 insertion(+), 1 deletion(-) | |
steve@fizzy:~/sandbox/perl6-lwp-simple | |
$ git fork | |
Updating stmuk | |
From git://github.com/cosimo/perl6-lwp-simple | |
* [new branch] chunked-transfers -> stmuk/chunked-transfers | |
* [new branch] master -> stmuk/master | |
* [new branch] ronaldxs-rewrite -> stmuk/ronaldxs-rewrite | |
new remote: stmuk | |
steve@fizzy:~/sandbox/perl6-lwp-simple | |
$ git push stmuk | |
Counting objects: 25, done. | |
Delta compression using up to 2 threads. | |
Compressing objects: 100% (19/19), done. | |
Writing objects: 100% (25/25), 3.15 KiB | 0 bytes/s, done. | |
Total 25 (delta 13), reused 14 (delta 4) | |
To [email protected]:stmuk/perl6-lwp-simple.git | |
* [new branch] stmuk -> stmuk | |
steve@fizzy:~/sandbox/perl6-lwp-simple | |
$ git pull-request | |
https://github.com/cosimo/perl6-lwp-simple/pull/52 | |
steve@fizzy:~/sandbox/perl6-lwp-simple |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment