Skip to content

Latest commit

 

History

History
25 lines (16 loc) · 740 Bytes

README.md

File metadata and controls

25 lines (16 loc) · 740 Bytes

Lab10

DATA301 - Lab10

GIT WORKFLOW ON JUPYTER TERMINAL

Cloning the repo in to Jupiter

  1. mkdir Lab10 wherever you want to work from in the terminal
  2. git clone https://github.com/ymehra/Lab10
  3. Open it from the file viewer in jupyter.
  4. git config --global core.editor "vim" - sets the editor to use vim not nano do whatever you want.
  5. git config --global user.name "Your Name"
  6. git config --global user.email you@example.com

To update from terminal in jupiter

  1. git commit
  2. write commit message in vim to finish commit
  3. After successful commit, git push https://github.com/ymehra/Lab10

To update your repo in jupyter

  1. git pull