Friday, June 26, 2020

The 6 Git Commands Data Scientist Should Know

An introduction to using Git for machine learning projects

Jesse Freeman
Jun 26 · 7 min read
Typing git into the command line will return a list of commands you can use.

1. Init

git init

2. Remote Add

https://github.com/jessefreeman/GitExample.git
git remote add origin <PROJECT_URL>

3. Add

git add .

4. Status

git status

5. Commit

git commit -m "Add a message so you know what you did."
git commit -m "Finished making changes to #1."

6. Push

git push --all

Rinse and Repeat

No comments:

Deduplicating Data on the Databricks Lakehouse: Making joins, BI, and AI queries “safe by default.”

  Imagine this: your manager asks the AI analytics tool: "What were our top-selling products last quarter?" The AI generates perfe...