DEV Community

Khoa Pham
Khoa Pham

Posted on • Updated on

Pushing to gist

Creating a new gist

  • Go to https://gist.github.com/ and create a new gist
  • Note that you need to include filename + extension to enable automatic language markup
  • Click Add file to add more files

Cloning the gist

  • If you've enabled 2 factor authentication, you need to use personal acccess token with https, or use ssh.

If you have enabled two-factor authentication, or if you are accessing an organization that uses SAML single sign-on, you must provide a personal access token instead of entering your password for HTTPS Git.

git remote add origin git@gist.github.com:c486939f82fc4d3a8ed4be21538fdd32.git
git clone
Enter fullscreen mode Exit fullscreen mode
  • You have branch master by default
git push origin master
Enter fullscreen mode Exit fullscreen mode

Ignoring directories

remote: Gist does not support directories.

  • In my cases I'm using node, so I need to ignore node_modules directory
  • Also need to untrack if necessary
git rm --cached -r .
git add .
Enter fullscreen mode Exit fullscreen mode

❤️ Support my app ❤️

❤️❤️😇😍🤘❤️❤️

Latest comments (0)