Blogs
Tracking a User's Social …
Managing user accounts can be tricky, especially when you allow users to login using different social platforms (i.e. Twitter, Google, GitHub). In this article we will take a look at how you manage the various ways a user might authenticate with an application that allows for additional social …
Testing a Pull Request …
Make a temporary directory (optional) mkdir <temp folder> && cd <temp folder> Initialize the folder with a .git repo (optional) git init Fetch the pull request, creating a new branch git fetch <git remote url> pull/<pull request ID>/head:<new local branch name> …
Updating GIT credentials …
If you’ve seen an ‘Authentication failed for https://____.git error, here’s a quick command to update your credentials through the command line. For Mac: git config --global credential.helper osxkeychain For Windows: git config --global credential.helper wincred You should then see …