Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save machinelearning147/d088c35a4c95da39b77e68f65f027984 to your computer and use it in GitHub Desktop.
Save machinelearning147/d088c35a4c95da39b77e68f65f027984 to your computer and use it in GitHub Desktop.
How to create Github Pull Request.ipynb
Display the source blob
Display the rendered blob
Raw
{
"nbformat": 4,
"nbformat_minor": 0,
"metadata": {
"colab": {
"name": "How to create Github Pull Request.ipynb",
"provenance": [],
"authorship_tag": "ABX9TyMVP51wwwE7NX7fOYumDZDM",
"include_colab_link": true
},
"kernelspec": {
"name": "python3",
"display_name": "Python 3"
},
"language_info": {
"name": "python"
}
},
"cells": [
{
"cell_type": "markdown",
"metadata": {
"id": "view-in-github",
"colab_type": "text"
},
"source": [
"<a href=\"https://colab.research.google.com/gist/machinelearning147/d088c35a4c95da39b77e68f65f027984/how-to-create-github-pull-request.ipynb\" target=\"_parent\"><img src=\"https://colab.research.google.com/assets/colab-badge.svg\" alt=\"Open In Colab\"/></a>"
]
},
{
"cell_type": "markdown",
"source": [
"\n",
"\n",
"```\n",
"git clone <repo>\n",
"\n",
"git checkout -b <branch_name>\n",
"\n",
"make changes or add files ...\n",
"\n",
"check status \n",
"git status\n",
"\n",
"git add .\n",
"\n",
"git commit -m ''message''\n",
"\n",
"git push origin <branch_name>\n",
"\n",
"```\n",
"\n"
],
"metadata": {
"id": "6lOgGswm5cv6"
}
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment