- Create or find a gist that you own.
- Clone your gist (replace
<hash>
with your gist's hash):# with ssh git clone [email protected]:<hash>.git mygist # with https
git clone https://gist.github.com/.git mygist
<hash>
with your gist's hash):
# with ssh
git clone [email protected]:<hash>.git mygist
# with https
git clone https://gist.github.com/.git mygist
aList=[1,1,1] | |
bList=[2,2,2] | |
cList=[3,3,3] | |
_________________ | |
List1 = aList | |
List1.append(0) | |
_________________ | |
#Different of: |