Skip to content

Instantly share code, notes, and snippets.

View hujw77's full-sized avatar
🍒
Focusing

echo hujw77

🍒
Focusing
View GitHub Profile
@zouhuan1215
zouhuan1215 / getTransaction.md
Last active September 8, 2021 16:45
Week 6 -- Data structure in ethereum


Core data structure in Ethereum | Go to the image source

As an overview of this post, following topics will be discussed:

@maglietti
maglietti / gistColaboration.md
Created August 21, 2015 16:33
How to collaborate on a gist

To colaborate on a gist:

  1. Clone your gist repo locally
  2. Add your friend’s fork as a remote e.g. if your friend is named Cindy: git remote add-url cindy https://gist.github.com/cindy/df03bdacaef75a80f310
  3. Fetch your friend’s commits: git fetch cindy/master
  4. Merge your friend’s changes into your repo: git merge cindy/master
  5. Push the changes back to GitHub: git push origin/master