1 2 3 4 5 6
7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
|
$ git clone http: Cloning into 'libteam'... remote: Counting objects: 4985, done. remote: Compressing objects: 100% (1822/1822), done. remote: Total 4985 (delta 3089), reused 4985 (delta 3089) Receiving objects: 100% (4985/4985), 15.87 MiB | 0 bytes/s, done. Resolving deltas: 100% (3089/3089), done. Checking connectivity... done. $ cd libteam/ $ git remote -v origin http: origin http: $ git remote add upstream https: $ git remote -v origin http: origin http: upstream https: upstream https: $ git fetch upstream remote: Counting objects: 4, done. remote: Total 4 (delta 3), reused 3 (delta 3), pack-reused 1 Unpacking objects: 100% (4/4), done. From https: * [new branch] gh-pages -> upstream/gh-pages * [new branch] master -> upstream/master $ git merge upstream/master Updating 3ede1b2..789591c Fast-forward man/teamd.conf.5 | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) $ git push origin master Username for 'http://192.168.199.32': your_name Password for 'http://[email protected]': Counting objects: 4, done. Delta compression using up to 24 threads. Compressing objects: 100% (4/4), done. Writing objects: 100% (4/4), 511 bytes | 0 bytes/s, done. Total 4 (delta 3), reused 0 (delta 0) To http: 3ede1b2..789591c master -> master
|