create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"
create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"
| #!/bin/bash | |
| # git-summary - summarise git repos at some path | |
| # | |
| # Adapted from https://gist.github.com/lmj0011/1a8dd1e376234ac7bf0fba2748ecdd0f | |
| # | |
| # Andy Gimblett, March 2017 | |
| usage() { |
| References: https://gist.github.com/noelboss/3fe13927025b89757f8fb12e9066f2fa | |
| More info: https://www.digitalocean.com/community/tutorials/how-to-use-git-hooks-to-automate-development-and-deployment-tasks | |
| https://www.youtube.com/watch?v=6mYtJu0E47U | |
| [misc commands deluser newuser] | |
| The following steps is for Developers to push their code from their local machine, to their server with git, and let git auto | |
| pull the update to your remote folder. How it works: | |
| - From your local machine, you do your normal coding. When done, you push your new code to git | |
| - Git then updates your local machine, and push it to your server's git | |
| - Git on your server gets the new update, and push it to your server's working folder |
| import numpy as np | |
| import matplotlib as mpl | |
| import matplotlib.pyplot as plt | |
| import pandas as pd # Not used here but will be required for creating dataframe | |
| import re | |
| import seaborn.apionly as sns | |
| """ | |
| MIT License |
| import numpy as np | |
| import matplotlib as mpl | |
| import matplotlib.pyplot as plt | |
| import pandas as pd # Not used here but will be required for creating dataframe | |
| import re | |
| import seaborn.apionly as sns | |
| """ | |
| MIT License |
| import matplotlib.pyplot as plt | |
| """ | |
| MIT License | |
| Copyright (c) [2016] [Parashar Dhapola] | |
| Permission is hereby granted, free of charge, to any person obtaining a copy | |
| of this software and associated documentation files (the "Software"), to deal | |
| in the Software without restriction, including without limitation the rights | |
| to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
| copies of the Software, and to permit persons to whom the Software is |